@Test
public void testContainsAttributeString() throws Exception
{
Entry entry = new DefaultEntry( schemaManager, EXAMPLE_DN );
assertFalse( entry.containsAttribute( "objectClass" ) );
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 );