2019-03-04 12:24:19 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-11 09:39:04 +08:00
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-02 12:50:43 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-11-11 09:39:04 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Tournament.Screens.Ladder.Components;
|
|
|
|
using osu.Game.Tournament.Screens.TeamWin;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
{
|
|
|
|
public class TestCaseTeamWin : LadderTestCase
|
|
|
|
{
|
|
|
|
[Cached]
|
|
|
|
private readonly Bindable<MatchPairing> currentMatch = new Bindable<MatchPairing>();
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
var pairing = new MatchPairing();
|
|
|
|
pairing.Team1.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == "USA");
|
|
|
|
pairing.Team2.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == "JPN");
|
2019-03-02 12:50:43 +08:00
|
|
|
pairing.Grouping.Value = Ladder.Groupings.FirstOrDefault(g => g.Name.Value == "Finals");
|
2018-11-11 09:39:04 +08:00
|
|
|
currentMatch.Value = pairing;
|
|
|
|
|
|
|
|
Add(new TeamWinScreen
|
|
|
|
{
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
FillAspectRatio = 16 / 9f
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|