コード例 #1
0
ファイル: TestResult.cs プロジェクト: xxjeng/nuxleus
 public TestResult(string rule, ITest test, bool? passed, ITestError error) :
     this(rule, test, passed)
 {
     Error = error;
 }
コード例 #2
0
ファイル: TestResult.cs プロジェクト: ddaysoftware/icalvalid
 public TestResult(IResourceManager mgr, string rule, ITest test, bool? passed, ITestError error)
     : this(mgr, rule, test, passed)
 {
     Error = error;
 }
コード例 #3
0
 public TestResult(string rule, ITest test, bool?passed, ITestError error) :
     this(rule, test, passed)
 {
     Error = error;
 }