@Test
public void testNotEvaluator() throws Exception
{
LdapConnection con = new LdapCoreSessionConnection( service.getAdminSession() );
EntryCursor cursor = con.search( "ou=groups,ou=system", "(!(gidNumber=00001))", SearchScope.ONELEVEL, SchemaConstants.ALL_ATTRIBUTES_ARRAY );
int count = 0;
while ( cursor.next() )
{
count++;