상속: ITestName
예제 #1
0
 public void BeginTest(ConeTestName test)
 {
     currentTestCase = new TestCase(test.FullName, ConeTestExecutor.ExecutorUri, source) {
         DisplayName = test.Name,
     };
     currentTestCase.Traits.Add("Context", test.Context);
     OnBeginTest?.Invoke(this, new TestAdapterEventArgs { TestCase = currentTestCase });
     stopwatch = Stopwatch.StartNew();
 }
예제 #2
0
파일: ConeTask.cs 프로젝트: drunkcod/Cone
 void ICrossDomainLogger.BeginTest(ConeTestName test)
 {
 }