예제 #1
0
파일: Requires.cs 프로젝트: r12f/Confidence
 public static void NotSupported <TException>([CallerMemberName] string functionName = null, Func <string> getErrorMessage = null)
     where TException : Exception
 {
     CustomAssertionValidation.NotSupported <TException>(functionName, getErrorMessage);
 }
예제 #2
0
파일: Requires.cs 프로젝트: r12f/Confidence
 public static void NotSupported(string functionName, Func <string> getErrorMessage = null)
 {
     CustomAssertionValidation.NotSupported <NotSupportedException>(functionName, getErrorMessage);
 }