1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 09:47:22 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseReplaySettingsOverlay.cs

56 lines
1.6 KiB
C#
Raw Normal View History

2017-05-18 20:21:58 +03: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-19 17:28:01 +03:00
using osu.Game.Graphics.UserInterface;
2017-06-05 16:47:42 +09:00
using osu.Game.Screens.Play;
2017-05-22 09:07:08 +03:00
using osu.Game.Screens.Play.ReplaySettings;
2017-05-18 20:21:58 +03:00
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseReplaySettingsOverlay : TestCase
{
public override string Description => @"Settings visible in replay/auto";
2017-05-19 17:28:01 +03:00
private ExampleContainer container;
2017-05-18 20:21:58 +03:00
public override void Reset()
{
base.Reset();
Add(new ReplaySettingsOverlay()
{
2017-05-19 17:28:01 +03:00
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
2017-05-18 20:21:58 +03:00
});
2017-05-19 17:28:01 +03:00
Add(container = new ExampleContainer());
AddStep(@"Add button", () => container.Add(new OsuButton
{
RelativeSizeAxes = Axes.X,
Text = @"Button",
}));
2017-06-05 16:47:42 +09:00
AddStep(@"Add checkbox", () => container.Add(new ReplayCheckbox
2017-05-19 17:28:01 +03:00
{
LabelText = "Checkbox",
}));
AddStep(@"Add textbox", () => container.Add(new FocusedTextBox
{
RelativeSizeAxes = Axes.X,
Height = 30,
PlaceholderText = "Textbox",
HoldFocus = false,
}));
}
2017-06-05 16:47:42 +09:00
private class ExampleContainer : ReplayGroup
2017-05-19 17:28:01 +03:00
{
2017-05-28 00:56:11 +03:00
protected override string Title => @"example";
2017-05-18 20:21:58 +03:00
}
}
}