}
}
- public void testIsAuthorizedGustUserHasWriteAccess()
+ public void testIsAuthorizedGuestUserHasWriteAccess()
throws Exception
{
assignRepositoryManagerRole( USER_GUEST, "corporate" );
assertTrue( isAuthorized );
}
- public void testIsAuthorizedGustUserHasNoWriteAccess()
+ public void testIsAuthorizedGuestUserHasNoWriteAccess()
throws Exception
{
assignRepositoryObserverRole( USER_GUEST, "corporate" );
assertFalse( isAuthorized );
}
- public void testIsAuthorizedGustUserHasReadAccess()
+ public void testIsAuthorizedGuestUserHasReadAccess()
throws Exception
{
assignRepositoryObserverRole( USER_GUEST, "corporate" );
assertTrue( isAuthorized );
}
- public void testIsAuthorizedGustUserHasNoReadAccess()
+ public void testIsAuthorizedGuestUserHasNoReadAccess()
throws Exception
{
boolean isAuthorized = servletAuth.isAuthorized( USER_GUEST, "corporate", false );