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