coll = list("*");
assertTrue( coll.isEmpty() );
coll = list("%");
assertTrue( coll.isEmpty() );
ImapMailbox test = create( "test" );
ImapMailbox testOne = create( test, "one" );
ImapMailbox testTwo = create( test, "two" );
ImapMailbox testTwoAaa = create( testTwo, "aaa" );
ImapMailbox different = create( "different" );
ImapMailbox differentOne = create( different, "one" );
ImapMailbox differentTwo = create( different, "two" );
coll = list("*");
assertContents( coll, new ImapMailbox[]{test, testOne, testTwo, testTwoAaa, different, differentOne, differentTwo});
coll = list("%");