@Test
public void testExceptEntryFull() throws UnsupportedRightException {
Map<MailboxACLEntryKey, MailboxACLRights> expectedEntries = new HashMap<MailboxACL.MailboxACLEntryKey, MailboxACL.MailboxACLRights>(u1u2g1g2ACL.getEntries());
expectedEntries.remove(new SimpleMailboxACLEntryKey(USER_1));
MailboxACL result = u1u2g1g2ACL.except(new SimpleMailboxACLEntryKey(USER_1), SimpleMailboxACL.FULL_RIGHTS);
Map<MailboxACLEntryKey, MailboxACLRights> foundEntries = result.getEntries();
assertEquals(expectedEntries, foundEntries);
}