@Test
public void testEmptyRDNStaticSerialization() throws LdapException, IOException, ClassNotFoundException
{
Rdn rdn = new Rdn( "" );
rdn.normalize();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
RdnSerializer.serialize( rdn, out );