Skip to content

Commit

Permalink
Make base TestScene classes abstract to exclude them from test browser
Browse files Browse the repository at this point in the history
  • Loading branch information
jai-x committed Jul 18, 2021
1 parent 3b2d73a commit 991b55b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hues.Game.Tests/HuesManualInputTestScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace hues.Game.Tests
{
public class HuesManualInputTestScene : ManualInputManagerTestScene
public abstract class HuesManualInputTestScene : ManualInputManagerTestScene
{
protected override ITestSceneTestRunner CreateRunner() => new HuesTestSceneTestRunner();
}
Expand Down
2 changes: 1 addition & 1 deletion hues.Game.Tests/HuesTestScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace hues.Game.Tests
{
public class HuesTestScene : TestScene
public abstract class HuesTestScene : TestScene
{
protected override ITestSceneTestRunner CreateRunner() => new HuesTestSceneTestRunner();
}
Expand Down

0 comments on commit 991b55b

Please sign in to comment.