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