{
byte[] v1 = Strings.getBytesUtf8( "test" );
byte[] v1Norm = Strings.getBytesUtf8( "test" );
// First check with a value which will be normalized
BinaryValue sbv = new BinaryValue( at, v1 );
sbv.apply( at );
byte[] normalized = sbv.getNormReference();
assertTrue( Arrays.equals( v1Norm, normalized ) );
assertTrue( Arrays.equals( v1, sbv.getBytes() ) );
BinaryValue sbvSer = deserializeValue( serializeValue( sbv ), at );
assertEquals( sbv, sbvSer );
}