mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
60 lines
1.8 KiB
C#
60 lines
1.8 KiB
C#
// 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.Containers;
|
|
using osu.Framework.Logging;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
internal class TestCaseMenuOverlays : TestCase
|
|
{
|
|
public override string Description => @"Tests pause and fail overlays";
|
|
|
|
private PauseOverlay pauseOverlay;
|
|
private FailOverlay failOverlay;
|
|
private int retryCount;
|
|
|
|
public override void Reset()
|
|
{
|
|
base.Reset();
|
|
|
|
retryCount = 0;
|
|
|
|
Add(pauseOverlay = new PauseOverlay
|
|
{
|
|
OnResume = () => Logger.Log(@"Resume"),
|
|
OnRetry = () => Logger.Log(@"Retry"),
|
|
OnQuit = () => Logger.Log(@"Quit"),
|
|
});
|
|
Add(failOverlay = new FailOverlay
|
|
{
|
|
OnRetry = () => Logger.Log(@"Retry"),
|
|
OnQuit = () => Logger.Log(@"Quit"),
|
|
});
|
|
|
|
AddStep(@"Pause", delegate {
|
|
if(failOverlay.State == Visibility.Visible)
|
|
{
|
|
failOverlay.Hide();
|
|
}
|
|
pauseOverlay.Show();
|
|
});
|
|
AddStep("Fail", delegate {
|
|
if (pauseOverlay.State == Visibility.Visible)
|
|
{
|
|
pauseOverlay.Hide();
|
|
}
|
|
failOverlay.Show();
|
|
});
|
|
AddStep("Add Retry", delegate
|
|
{
|
|
retryCount++;
|
|
pauseOverlay.Retries = retryCount;
|
|
failOverlay.Retries = retryCount;
|
|
});
|
|
}
|
|
}
|
|
}
|