EntryAttribute attrSN = new DefaultServerAttribute( atSN, "Test1", "Test2" );
EntryAttribute attrPWD = new DefaultServerAttribute( atPwd, BYTES1, BYTES2 );
entry.put( attrOC, attrCN, attrSN, attrPWD );
entry.removeAttributes( "CN", "SN" );
assertFalse( entry.containsAttribute( "cn", "sn" ) );
assertTrue( entry.containsAttribute( "objectclass", "userpassword" ) );
List<EntryAttribute> removed = entry.removeAttributes( "badId" );