Skip to content

Commit

Permalink
Made tests run with new listener interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
z002Holpp committed Apr 17, 2024
1 parent af52a6f commit 3b760be
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ private void RunTestSuite(TestSuite testSuite)
var context = new TestExecutionContext();
context.Dispatcher = dispatcher;
context.Listener = this;
context.ListenerExt = this;

var workItem = TestBuilder.CreateWorkItem(testSuite, context);

Expand Down Expand Up @@ -222,7 +223,7 @@ public void TestFixtureWithMultipleSetUpTearDown_EventsForEachOneTimeSetUpOneTim
new TestEvent() { Action = TestAction.OneTimeTearDownFinished },
new TestEvent() { Action = TestAction.TestFinished }, // Fixture
};
//Debugger.Launch();

CollectionAssert.AreEqual(expectedEventsInTheRightOrder, AllEvents, new TestEventActionComparer());
}

Expand Down

0 comments on commit 3b760be

Please sign in to comment.