@Test
public void testRemoveEntryAttribute() throws Exception
{
ServerEntry entry = new DefaultServerEntry( schemaManager, EXAMPLE_DN );
EntryAttribute attrOC = new DefaultServerAttribute( atOC, "top", "person" );
EntryAttribute attrCN = new DefaultServerAttribute( atCN, "test1", "test2" );
EntryAttribute attrSN = new DefaultServerAttribute( atSN, "Test1", "Test2" );
EntryAttribute attrPWD = new DefaultServerAttribute( atPwd, BYTES1, BYTES2 );
entry.put( attrOC, attrCN, attrSN, attrPWD );
List<EntryAttribute> removed = entry.remove( attrSN, attrPWD );