mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Fix test coverage not actually covering crash
This commit is contained in:
parent
1067769b24
commit
827d48adcc
@ -14,6 +14,7 @@ namespace osu.Game.Tournament.Tests.Components
|
||||
public partial class TestSceneSongBar : TournamentTestScene
|
||||
{
|
||||
private SongBar songBar = null!;
|
||||
private TournamentBeatmap ladderBeatmap = null!;
|
||||
|
||||
[SetUpSteps]
|
||||
public override void SetUpSteps()
|
||||
@ -22,9 +23,10 @@ namespace osu.Game.Tournament.Tests.Components
|
||||
|
||||
AddStep("setup picks bans", () =>
|
||||
{
|
||||
ladderBeatmap = CreateSampleBeatmap();
|
||||
Ladder.CurrentMatch.Value!.PicksBans.Add(new BeatmapChoice
|
||||
{
|
||||
BeatmapID = CreateSampleBeatmap().OnlineID,
|
||||
BeatmapID = ladderBeatmap.OnlineID,
|
||||
Team = TeamColour.Red,
|
||||
Type = ChoiceType.Pick,
|
||||
});
|
||||
@ -52,7 +54,7 @@ namespace osu.Game.Tournament.Tests.Components
|
||||
beatmap.StarRating = 4.56f;
|
||||
beatmap.Length = 123456;
|
||||
beatmap.BPM = 133;
|
||||
beatmap.OnlineID = CreateSampleBeatmap().OnlineID;
|
||||
beatmap.OnlineID = ladderBeatmap.OnlineID;
|
||||
|
||||
songBar.Beatmap = new TournamentBeatmap(beatmap);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user