mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 04:17:24 +08:00
39 lines
1.1 KiB
C#
39 lines
1.1 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.Logging;
|
|
using osu.Framework.Screens.Testing;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Desktop.VisualTests.Tests
|
|
{
|
|
internal class TestCasePauseOverlay : TestCase
|
|
{
|
|
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);
|
|
AddButton("Add Retry", delegate
|
|
{
|
|
retryCount++;
|
|
pauseOverlay.Retries = retryCount;
|
|
});
|
|
|
|
retryCount = 0;
|
|
}
|
|
}
|
|
}
|