Add more asserts to pause test in an attempt to track down intermittent test failures

This commit is contained in:
Dean Herbert 2019-05-09 11:31:40 +09:00
parent 869136b2fb
commit 5b1ae1210a
1 changed files with 2 additions and 0 deletions

View File

@ -157,6 +157,8 @@ private void exitAndConfirm()
private void confirmPaused()
{
confirmClockRunning(false);
AddAssert("player not exited", () => Player.IsCurrentScreen());
AddAssert("player not failed", () => !Player.HasFailed);
AddAssert("pause overlay shown", () => Player.PauseOverlayVisible);
}