/// <inheritdoc/>
 public bool ClassFailed(string className, string exceptionType, string message, string stackTrace)
 {
     // TODO: Should this information be part of TestClass?
     return(callback.ClassFailed(testClass, exceptionType, message, stackTrace));
 }
示例#2
0
 public bool ClassFailed(TestClass testClass, string exceptionType, string message, string stackTrace)
 {
     return(innerCallback.ClassFailed(testClass, exceptionType, message, stackTrace));
 }