@Test
public void testRemoveEntryAttributeArray() throws LdapException
{
Entry entry = new DefaultEntry( EXAMPLE_DN );
EntryAttribute attrOC = new DefaultEntryAttribute( "objectClass", "top", "person" );
EntryAttribute attrCN = new DefaultEntryAttribute( "cn", "test1", "test2" );
EntryAttribute attrSN = new DefaultEntryAttribute( "sn", "Test1", "Test2" );
EntryAttribute attrPWD = new DefaultEntryAttribute( "userPassword", BYTES1, BYTES2 );
entry.put( attrOC, attrCN, attrSN, attrPWD );
List<EntryAttribute> removed = entry.remove( attrSN, attrPWD );