1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 10:57:27 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseModSelectOverlay.cs

35 lines
1.0 KiB
C#
Raw Normal View History

2017-02-17 04:05:03 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
using osu.Game.Overlays.Mods;
2017-03-28 20:03:34 +08:00
using osu.Framework.Testing;
2017-02-17 04:05:03 +08:00
using osu.Game.Modes;
namespace osu.Desktop.VisualTests.Tests
{
2017-03-07 09:59:19 +08:00
internal class TestCaseModSelectOverlay : TestCase
2017-02-17 04:05:03 +08:00
{
public override string Description => @"Tests the mod select overlay";
2017-02-17 04:05:03 +08:00
private ModSelectOverlay modSelect;
2017-02-17 04:05:03 +08:00
public override void Reset()
{
base.Reset();
Add(modSelect = new ModSelectOverlay
2017-02-17 04:05:03 +08:00
{
RelativeSizeAxes = Axes.X,
2017-02-17 04:05:03 +08:00
Origin = Anchor.BottomCentre,
Anchor = Anchor.BottomCentre,
});
2017-03-31 16:55:07 +08:00
AddStep("Toggle", modSelect.ToggleVisibility);
2017-04-15 04:22:41 +08:00
foreach (var ruleset in RulesetCollection.AllRulesets)
AddStep(ruleset.Description, () => modSelect.Ruleset.Value = ruleset);
2017-02-17 04:05:03 +08:00
}
}
}