@Ignore @Test public void testStringValueWithDataNormalizedSerializationBytesPerf() throws IOException, LdapException, ClassNotFoundException {
sv1n.apply(ats);
StringValue svDeser=new StringValue(ats);
long t0=System.currentTimeMillis();
for (int i=0; i < 10000000; i++) {
byte[] buffer=new byte[128];
sv1n.serialize(buffer,0);
svDeser.deserialize(buffer,0);
}
long t1=System.currentTimeMillis();
System.out.println("Delta ser fast = " + (t1 - t0));
}