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;
|
2021-08-28 15:22:01 +08:00
|
|
|
using NUnit.Framework;
|
2018-11-11 09:39:04 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Tournament.Screens.TeamWin;
|
|
|
|
|
2019-06-18 14:28:36 +08:00
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2020-06-24 15:57:17 +08:00
|
|
|
public class TestSceneTeamWinScreen : TournamentTestScene
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2021-08-28 15:22:01 +08:00
|
|
|
[Test]
|
|
|
|
public void TestBasic()
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
2021-08-28 15:44:54 +08:00
|
|
|
AddStep("set up match", () =>
|
|
|
|
{
|
|
|
|
var match = Ladder.CurrentMatch.Value;
|
2020-06-24 16:57:07 +08:00
|
|
|
|
2021-08-28 15:44:54 +08:00
|
|
|
match.Round.Value = Ladder.Rounds.FirstOrDefault(g => g.Name.Value == "Finals");
|
|
|
|
match.Completed.Value = true;
|
|
|
|
});
|
2018-11-11 09:39:04 +08:00
|
|
|
|
2021-08-28 15:44:54 +08:00
|
|
|
AddStep("create screen", () => Add(new TeamWinScreen
|
2018-11-11 09:39:04 +08:00
|
|
|
{
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
FillAspectRatio = 16 / 9f
|
2021-08-28 15:44:54 +08:00
|
|
|
}));
|
2018-11-11 09:39:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|