2019-01-24 16:43:03 +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-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
|
public TestCaseDrawings()
|
|
|
|
|
{
|
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"
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|