2017-02-07 12:59:30 +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
|
|
|
|
|
|
2017-02-07 12:52:19 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens.Testing;
|
2017-03-03 09:17:39 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2017-01-27 19:11:22 +08:00
|
|
|
|
|
2017-02-07 12:52:19 +08:00
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class TestCasePauseOverlay : TestCase
|
2017-02-07 12:52:19 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Tests the pause overlay";
|
|
|
|
|
|
|
|
|
|
private PauseOverlay pauseOverlay;
|
|
|
|
|
private int retryCount;
|
|
|
|
|
|
|
|
|
|
public override void Reset()
|
|
|
|
|
{
|
|
|
|
|
base.Reset();
|
|
|
|
|
|
|
|
|
|
Add(pauseOverlay = new PauseOverlay
|
|
|
|
|
{
|
|
|
|
|
Depth = -1,
|
|
|
|
|
OnResume = () => Logger.Log(@"Resume"),
|
|
|
|
|
OnRetry = () => Logger.Log(@"Retry"),
|
|
|
|
|
OnQuit = () => Logger.Log(@"Quit")
|
|
|
|
|
});
|
|
|
|
|
AddButton("Pause", pauseOverlay.Show);
|
2017-01-31 20:42:14 +08:00
|
|
|
|
AddButton("Add Retry", delegate
|
|
|
|
|
{
|
|
|
|
|
retryCount++;
|
2017-01-31 21:17:47 +08:00
|
|
|
|
pauseOverlay.Retries = retryCount;
|
2017-02-07 12:52:19 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
retryCount = 0;
|
2017-01-27 19:11:22 +08:00
|
|
|
|
}
|
2017-02-07 12:52:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|