public void UserWithIntRolesThrows()
 {
     ExceptionHelper.ExpectException <InvalidOperationException>(() =>
                                                                 AuthenticationCodeProcessorTest.Generate <UserWithIntRoles.Auth>());
 }
 public void UserWithGetRolesThrows()
 {
     // TODO: Figure out what check is required.
     ExceptionHelper.ExpectException <InvalidOperationException>(() =>
                                                                 AuthenticationCodeProcessorTest.Generate <UserWithGetRoles.Auth>());
 }
 public void UserWithIgnoredDataMemeberNameThrows()
 {
     ExceptionHelper.ExpectException <InvalidOperationException>(() =>
                                                                 AuthenticationCodeProcessorTest.Generate <UserWithIgnoredDataMemeberName.Auth>());
 }
 public void ServiceWithNonUserUpdateUserThrows()
 {
     ExceptionHelper.ExpectException <InvalidOperationException>(() =>
                                                                 AuthenticationCodeProcessorTest.Generate <ServiceWithNonUserUpdateUser>());
 }
 public void ServiceWithParameterLogoutThrows()
 {
     ExceptionHelper.ExpectException <InvalidOperationException>(() =>
                                                                 AuthenticationCodeProcessorTest.Generate <ServiceWithParameterLogout>());
 }
 public void ServiceWithExplicitLoginThrows()
 {
     ExceptionHelper.ExpectException <InvalidOperationException>(() =>
                                                                 AuthenticationCodeProcessorTest.Generate <ServiceWithExplicitLogin>());
 }