コード例 #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);
 }