1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 18:57:27 +08:00
osu-lazer/osu.Game.Tournament.Tests/TestCaseTeamIntro.cs

35 lines
1.1 KiB
C#
Raw Normal View History

2018-10-14 17:00:28 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Linq;
using osu.Framework.Allocation;
2018-11-06 19:13:04 +08:00
using osu.Framework.Configuration;
using osu.Framework.Graphics;
2018-11-06 19:13:04 +08:00
using osu.Game.Tournament.Screens.Ladder.Components;
using osu.Game.Tournament.Screens.TeamIntro;
namespace osu.Game.Tournament.Tests
{
public class TestCaseTeamIntro : LadderTestCase
{
2018-11-06 19:13:04 +08:00
[Cached]
private readonly Bindable<MatchPairing> currentMatch = new Bindable<MatchPairing>();
[BackgroundDependencyLoader]
private void load()
{
2018-11-06 19:13:04 +08:00
var pairing = new MatchPairing();
pairing.Team1.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == "USA");
pairing.Team2.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == "JPN");
pairing.Grouping.Value = Ladder.Groupings.FirstOrDefault(g => g.Name == "Finals");
currentMatch.Value = pairing;
2018-11-06 19:18:11 +08:00
Add(new TeamIntroScreen
{
FillMode = FillMode.Fit,
FillAspectRatio = 16 / 9f
});
}
}
}