1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 14:22:55 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseSettingsDisplay.cs

27 lines
750 B
C#
Raw Normal View History

2017-05-17 15:36:57 +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.Framework.Testing;
2017-05-18 16:39:22 +08:00
using osu.Game.Screens.Play.Settings;
2017-05-17 15:36:57 +08:00
namespace osu.Desktop.VisualTests.Tests
{
2017-05-18 16:39:22 +08:00
internal class TestCaseSettingsDisplay : TestCase
2017-05-17 15:36:57 +08:00
{
public override string Description => @"Setting visible in replay/auto";
public override void Reset()
{
base.Reset();
2017-05-18 16:39:22 +08:00
Add(new SettingsDisplay()
2017-05-17 15:36:57 +08:00
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AutoSizeAxes = Axes.Both,
});
}
}
}