* Test of notIn method, of class CriteriaQuery.
*/
@Test
public void testNotInCollection() {
List<?> criterions = Arrays.asList("a", "b");
assertEquals(new NotInCriterion("name", criterions), instance.notIn("name", criterions).getQueryCriterion());
}