public static void IsAuthenticationSignOutHandler_returns_false_for_null_type()
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsSignOutHandler(null));
 }
 public static void IsAuthenticationSignOutHandler_returns_false_for_non_AuthenticationHandler_types(Type type)
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsSignOutHandler(type));
 }
 public static void IsAuthenticationSignInHandler_returns_true_for_AuthenticationHandler_types(Type type)
 {
     Assert.True(AuthenticationHandlerTypeHelpers.IsSignInHandler(type));
 }
 public static void IsAuthenticationSignOutHandler_returns_false_for_AuthenticationHandlers_that_do_not_support_sign_out(Type type)
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsSignOutHandler(type));
 }
 public static void IsAuthenticationRequestHandler_returns_false_for_non_remote_AuthenticationHandler_types(Type type)
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsRequestHandler(type));
 }