Value<String> strValue1 = new StringValue( atEMail, "test1" );
Value<String> strValue2 = new StringValue( atEMail, "test2" );
Value<String> strValue3 = new StringValue( atEMail, "test3" );
Value<String> strNullValue = new StringValue( atEMail, null );
Value<byte[]> binValue1 = new BinaryValue( atPwd, BYTES1 );
Value<byte[]> binValue2 = new BinaryValue( atPwd, BYTES2 );
Value<byte[]> binValue3 = new BinaryValue( atPwd, BYTES3 );
Value<byte[]> binNullValue = new BinaryValue( atPwd, null );
assertTrue( entry.contains( "EMail", strValue1, strValue2 ) );
assertTrue( entry.contains( "userpassword", binValue1, binValue2, binNullValue ) );
assertFalse( entry.contains( "email", strValue3 ) );