public static void IsAuthenticationSignInHandler_returns_false_for_null_type() { Assert.False(AuthenticationHandlerTypeHelpers.IsSignInHandler(null)); }
public static void IsAuthenticationSignInHandler_returns_false_for_AuthenticationHandlers_that_do_not_support_sign_in(Type type) { Assert.False(AuthenticationHandlerTypeHelpers.IsSignInHandler(type)); }
public static void IsAuthenticationSignInHandler_returns_false_for_non_AuthenticationHandler_types(Type type) { Assert.False(AuthenticationHandlerTypeHelpers.IsSignInHandler(type)); }
public static void IsAuthenticationSignInHandler_returns_true_for_AuthenticationHandler_types(Type type) { Assert.True(AuthenticationHandlerTypeHelpers.IsSignInHandler(type)); }