Advanced Search: Undefined for enums and unit tests

SVN:b1162[5517]
This commit is contained in:
Eric Espié
2018-03-23 16:22:10 +00:00
parent b566bead31
commit 50e0ea5ec5
3 changed files with 11 additions and 0 deletions

View File

@@ -109,6 +109,11 @@ class SearchFormTest extends ItopDataTestCase
array('OQL' => "SELECT UserRequest WHERE start_date >= '2017-01-01 00:00:00' AND '2017-01-01 00:00:00' >= start_date", 1),
array('OQL' => "SELECT UserRequest WHERE start_date >= '2017-01-01 00:00:00' AND '2017-01-01 01:00:00' > start_date", 1),
array('OQL' => "SELECT UserRequest WHERE start_date >= '2017-01-01 00:00:00' AND '2017-01-02 00:00:00' > start_date", 1),
array(
'OQL' => "SELECT FunctionalCI WHERE ((business_criticity IN ('high', 'medium')) OR ISNULL(business_criticity)) AND 1",
1
),
);
}
}