public void FireTestStepFinishedEventForNonTestCaseCreatesGallioTestDataIsTestCaseSetToFalse() { testRunnerEvents.FireTestStepFinishedEventForNonTestCase("testName"); Assert.IsFalse(testStepFinishedEventArgs.Test.IsTestCase); }
public void FiringTestStepFinishedEventWithNonTestCaseDoesNotWriteTestResultToTestResultsWriter() { testRunnerEvents.FireTestStepFinishedEventForNonTestCase("MyNamespace.MyTests.MyTestMethod"); Assert.AreEqual(0, writer.TestResults.Count); }