public static void IsAuthenticationHandler_returns_false_for_non_AuthenticationHandler_types(Type type)
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsHandler(type));
 }
 public static void IsAuthenticationHandler_returns_false_for_null_type()
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsHandler(null));
 }
 public static void IsAuthenticationHandler_returns_true_for_AuthenticationHandler_types(Type type)
 {
     Assert.True(AuthenticationHandlerTypeHelpers.IsHandler(type));
 }