mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-13 11:20:31 +00:00
19 lines
590 B
C#
19 lines
590 B
C#
using osu.Framework.Allocation;
|
|
using NUnit.Framework;
|
|
|
|
namespace TemplateGame.Game.Tests.Visual
|
|
{
|
|
[TestFixture]
|
|
public partial class TestSceneTemplateGameGame : TemplateGameTestScene
|
|
{
|
|
// Add visual tests to ensure correct behaviour of your game: https://github.com/ppy/osu-framework/wiki/Development-and-Testing
|
|
// You can make changes to classes associated with the tests and they will recompile and update immediately.
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AddGame(new TemplateGameGame());
|
|
}
|
|
}
|
|
}
|