// The entry should contain the permission as it has just been added.
assertTrue(entry.checkPermission(permission1Mock));
// Removing permission2 should fail as it has not been added.
assertFalse(entry.removePermission(permission2Mock));
// Removing permission1 should work as it has been added.
assertTrue(entry.removePermission(permission1Mock));
// Entries should be positive by default.