* Test authoring adding a follower to a private group where the person adding the follower is not a coordinator.
*/
@Test(expected = AuthorizationException.class)
public void testAuthorizeAddFollowerPrivateGroupNotCoordinator()
{
final SetFollowingStatusRequest request = new SetFollowingStatusRequest("1", "1", EntityType.GROUP, false,
Follower.FollowerStatus.FOLLOWING);
final DomainGroupModelView testGroup = new DomainGroupModelView();
testGroup.setIsPublic(false);
testGroup.setEntityId(1L);