*/
@Before
public void initNames() throws Exception
{
attributeA = new HashSet<EntryAttribute>();
attributeA.add( new DefaultEntryAttribute( "aa", "aa" ) );
attributeA.add( new DefaultEntryAttribute( "aa", "bb" ) );
attributeA.add( new DefaultEntryAttribute( "aa", "cc" ) );
// Sets aren't ordered, so adding order must not matter
attributeB = new HashSet<EntryAttribute>();
attributeB.add( new DefaultEntryAttribute( "aa", "bb" ) );
attributeB.add( new DefaultEntryAttribute( "aa", "cc" ) );
attributeB.add( new DefaultEntryAttribute( "aa", "aa" ) );
attributeC = new HashSet<EntryAttribute>();
attributeC.add( new DefaultEntryAttribute( "aa", "aa" ) );
attributeC.add( new DefaultEntryAttribute( "bb", "bb" ) );
attributeC.add( new DefaultEntryAttribute( "aa", "cc" ) );
attributeD = new HashSet<EntryAttribute>();
attributeD.add( new DefaultEntryAttribute( "aa", "aa" ) );
attributeD.add( new DefaultEntryAttribute( "aa", "bb" ) );
attributeD.add( new DefaultEntryAttribute( "aa", "dd" ) );
attributeValueItemA = new AttributeValueItem( attributeA );
attributeValueItemACopy = new AttributeValueItem( attributeA );
attributeValueItemB = new AttributeValueItem( attributeB );
attributeValueItemC = new AttributeValueItem( attributeC );
attributeValueItemD = new AttributeValueItem( attributeD );