Value<String> strValueTop = new StringValue( "top" );
Value<String> strValuePerson = new StringValue( "person" );
Value<String> strNullValue = new StringValue( (String)null);
Value<byte[]> binValue1 = new BinaryValue( BYTES1 );
Value<byte[]> binValue2 = new BinaryValue( BYTES2 );
Value<byte[]> binNullValue = new BinaryValue( (byte[])null );
entry.put( "ObjectClass", atOC, strValueTop, strValuePerson, strNullValue );
entry.put( "UserPassword", atPwd, binValue1, binValue2, binNullValue );
String expected =