Skip to content

Commit

Permalink
Merge pull request #6113 from peppy/expose-unit-test-runner
Browse files Browse the repository at this point in the history
Expose `RunTestsFromNUnit` as `public`
  • Loading branch information
bdach authored Jan 10, 2024
2 parents 382b60f + 4357aa7 commit 631577e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion osu.Framework.Tests/Visual/Testing/TestSceneNestedGame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void TearDownSteps()
AddStep("mark host running", () => hostWasRunningAfterNestedExit = true);
}

protected override void RunTestsFromNUnit()
public override void RunTestsFromNUnit()
{
base.RunTestsFromNUnit();

Expand Down
2 changes: 1 addition & 1 deletion osu.Framework/Testing/TestScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ public void SetUpTestForNUnit()
}

[TearDown]
protected virtual void RunTestsFromNUnit()
public virtual void RunTestsFromNUnit()
{
RunTearDownSteps();

Expand Down

0 comments on commit 631577e

Please sign in to comment.