Ejemplo n.º 1
0
 public static void NotSupported <TException>([CallerMemberName] string functionName = null, Func <string> getErrorMessage = null)
     where TException : Exception
 {
     CustomAssertionValidation.NotSupported <TException>(functionName, getErrorMessage);
 }
Ejemplo n.º 2
0
 public static void NotSupported(string functionName, Func <string> getErrorMessage = null)
 {
     CustomAssertionValidation.NotSupported <NotSupportedException>(functionName, getErrorMessage);
 }