1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 23:47:29 +08:00
osu-lazer/osu.Game.Tests/Visual/Tournament/TestCaseDrawings.cs

86 lines
2.5 KiB
C#
Raw Normal View History

// 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-04-13 17:19:50 +08:00
using System.Collections.Generic;
using System.ComponentModel;
using osu.Framework.Allocation;
2018-04-13 17:19:50 +08:00
using osu.Game.Screens.Tournament;
using osu.Game.Screens.Tournament.Teams;
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Tournament
2018-04-13 17:19:50 +08:00
{
[Description("for tournament use")]
2019-02-15 16:01:06 +08:00
public class TestCaseDrawings : ScreenTestCase
2018-04-13 17:19:50 +08:00
{
[BackgroundDependencyLoader]
private void load()
2018-04-13 17:19:50 +08:00
{
2019-02-15 16:01:06 +08:00
LoadScreen(new Drawings
2018-04-13 17:19:50 +08:00
{
TeamList = new TestTeamList(),
});
}
private class TestTeamList : ITeamList
{
public IEnumerable<DrawingsTeam> Teams { get; } = new[]
{
new DrawingsTeam
{
FlagName = "GB",
FullName = "United Kingdom",
Acronym = "UK"
},
new DrawingsTeam
{
FlagName = "FR",
FullName = "France",
Acronym = "FRA"
},
new DrawingsTeam
{
FlagName = "CN",
FullName = "China",
Acronym = "CHN"
},
new DrawingsTeam
{
FlagName = "AU",
FullName = "Australia",
Acronym = "AUS"
},
new DrawingsTeam
{
FlagName = "JP",
FullName = "Japan",
Acronym = "JPN"
},
new DrawingsTeam
{
FlagName = "RO",
FullName = "Romania",
Acronym = "ROM"
},
new DrawingsTeam
{
FlagName = "IT",
FullName = "Italy",
Acronym = "PIZZA"
},
new DrawingsTeam
{
FlagName = "VE",
FullName = "Venezuela",
Acronym = "VNZ"
},
new DrawingsTeam
{
FlagName = "US",
FullName = "United States of America",
Acronym = "USA"
},
};
}
}
}