Add Thad/Owen's test

This commit is contained in:
Tom Morris 2020-09-30 20:57:57 -04:00
parent dbb8e530c8
commit 30d16c2077

View File

@ -61,6 +61,9 @@ public class UniquesTests extends RefineTest {
String[] test4 = {"[toDate(2020), '2018-03-02'.toDate(), toDate(2020)].uniques().toString()", "[2020-01-01T00:00Z, 2018-03-02T00:00Z]"};
parseEval(bindings, test4);
String[] test5 = {"[null,null,null].uniques().toString()", "[null]"};
parseEval(bindings, test5);
}
@Test