1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:07:24 +08:00
osu-lazer/osu.Desktop.Tests/Visual/TestCaseMenuOverlays.cs

58 lines
1.8 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-28 20:03:12 +08:00
using osu.Framework.Graphics.Containers;
2017-02-07 12:52:19 +08:00
using osu.Framework.Logging;
using osu.Game.Screens.Play;
namespace osu.Desktop.Tests.Visual
2017-02-07 12:52:19 +08:00
{
internal class TestCaseMenuOverlays : OsuTestCase
2017-02-07 12:52:19 +08:00
{
2017-04-02 02:17:24 +08:00
public override string Description => @"Tests pause and fail overlays";
2017-02-07 12:52:19 +08:00
public TestCaseMenuOverlays()
2017-02-07 12:52:19 +08:00
{
2017-07-08 17:17:47 +08:00
FailOverlay failOverlay;
PauseContainer.PauseOverlay pauseOverlay;
var retryCount = 0;
2017-04-06 17:27:45 +08:00
Add(pauseOverlay = new PauseContainer.PauseOverlay
2017-02-07 12:52:19 +08:00
{
2017-03-28 15:49:58 +08:00
OnResume = () => Logger.Log(@"Resume"),
OnRetry = () => Logger.Log(@"Retry"),
OnQuit = () => Logger.Log(@"Quit"),
2017-04-06 17:27:45 +08:00
});
Add(failOverlay = new FailOverlay
2017-03-28 20:03:12 +08:00
{
OnRetry = () => Logger.Log(@"Retry"),
OnQuit = () => Logger.Log(@"Quit"),
2017-04-06 17:27:45 +08:00
});
2017-07-08 17:17:47 +08:00
AddStep(@"Pause", delegate
{
2017-06-08 14:35:10 +08:00
if (failOverlay.State == Visibility.Visible)
2017-03-28 20:03:12 +08:00
{
failOverlay.Hide();
}
pauseOverlay.Show();
});
2017-07-08 17:17:47 +08:00
AddStep("Fail", delegate
{
2017-03-28 20:03:12 +08:00
if (pauseOverlay.State == Visibility.Visible)
{
pauseOverlay.Hide();
}
failOverlay.Show();
});
2017-04-02 02:50:25 +08:00
AddStep("Add Retry", delegate
{
retryCount++;
2017-01-31 21:17:47 +08:00
pauseOverlay.Retries = retryCount;
2017-03-28 20:03:12 +08:00
failOverlay.Retries = retryCount;
2017-02-07 12:52:19 +08:00
});
}
2017-02-07 12:52:19 +08:00
}
}