@Test
public void testSimpleRdnThreeValuesUnorderedStaticSerialization() throws LdapException, IOException,
ClassNotFoundException
{
Rdn rdn = new Rdn( " B = b + A = a + C = c " );
rdn.normalize();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
rdn.writeExternal( out );