1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 16:32:54 +08:00

Add multiplayer screen test steps.

This commit is contained in:
DrabWeb 2018-05-15 21:20:34 -03:00
parent 1a78ac3d10
commit 8e053f2166

View File

@ -11,7 +11,11 @@ namespace osu.Game.Tests.Visual
{
public TestCaseMultiScreen()
{
Child = new Multiplayer();
Multiplayer multi = new Multiplayer();
AddStep(@"show", () => Add(multi));
AddWaitStep(5);
AddStep(@"exit", multi.Exit);
}
}
}