コード例 #1
0
 public static void IsAuthenticationRequestHandler_returns_false_for_null_type()
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsRequestHandler(null));
 }
コード例 #2
0
 public static void IsAuthenticationRequestHandler_returns_false_for_non_AuthenticationHandler_types(Type type)
 {
     Assert.False(AuthenticationHandlerTypeHelpers.IsRequestHandler(type));
 }