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