1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:32:55 +08:00

Add comments to test

This commit is contained in:
Dan Balasescu 2023-12-04 10:20:53 +09:00
parent c2644a5d5e
commit 9ccd33a1ec
No known key found for this signature in database

View File

@ -398,8 +398,13 @@ namespace osu.Game.Tests.Visual.Multiplayer
raiseRoomUpdated();
});
// Ready
ClickButtonWhenEnabled<MultiplayerReadyButton>();
// Start match
ClickButtonWhenEnabled<MultiplayerReadyButton>();
// Abort
ClickButtonWhenEnabled<MultiplayerReadyButton>();
AddStep("check abort request received", () => multiplayerClient.Verify(m => m.AbortMatch(), Times.Once));
}