public override void TestStarted(TestCase test) { var testCase = test.ToVsTestCase(); // The test case is starting frameworkHandle.RecordStart(testCase); }
public override void TestFinished(TestCase test) { var testCase = test.ToVsTestCase(); var result = test.ToVsTestResult(); var outcome = ChutzpahExtensionMethods.ToVsTestOutcome(test.Passed); frameworkHandle.RecordResult(result); // The test case is done frameworkHandle.RecordEnd(testCase, outcome); }