Make it so visual tests only load the osu ruleset

This commit is contained in:
David Zhao
2019-02-18 18:12:45 +09:00
parent 1d80674fbd
commit 4e07aba548
2 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,7 @@
using NUnit.Framework;
using osu.Game.Graphics;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Osu;
using osu.Game.Screens;
using osu.Game.Screens.Backgrounds;
using osu.Game.Screens.Play;
@ -13,6 +14,10 @@ namespace osu.Game.Tests.Visual
[TestFixture]
public class TestCaseBackgroundScreenBeatmap : TestCasePlayer
{
public TestCaseBackgroundScreenBeatmap() : base(new OsuRuleset())
{
}
/// <summary>
/// Check if the fade container is properly being faded when screen dim is enabled.
/// </summary>