public static void IsAuthenticationRequestHandler_returns_false_for_null_type()
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsRequestHandler(null));
 }
 public static void IsAuthenticationRequestHandler_returns_false_for_non_AuthenticationHandler_types(Type type)
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsRequestHandler(type));
 }