1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseDrawings.cs

88 lines
2.5 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-03-08 14:50:52 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
2017-03-03 15:33:40 +08:00
using osu.Framework.Screens.Testing;
2017-02-27 13:19:07 +08:00
using osu.Game.Screens.Tournament;
2017-03-03 19:42:22 +08:00
using osu.Game.Screens.Tournament.Teams;
using osu.Game.Users;
2017-02-27 13:19:07 +08:00
namespace osu.Desktop.VisualTests.Tests
{
2017-03-07 09:59:19 +08:00
internal class TestCaseDrawings : TestCase
2017-02-27 13:19:07 +08:00
{
public override string Description => "Tournament drawings";
public override void Reset()
{
base.Reset();
Add(new Drawings
{
TeamList = new TestTeamList(),
});
2017-03-03 17:47:56 +08:00
}
2017-03-07 09:59:19 +08:00
private class TestTeamList : ITeamList
2017-03-03 17:47:56 +08:00
{
public IEnumerable<Region> Teams { get; } = new[]
2017-03-03 17:47:56 +08:00
{
new Region
{
FlagName = "GB",
FullName = "United Kingdom",
Acronym = "UK"
},
new Region
{
FlagName = "FR",
FullName = "France",
Acronym = "FRA"
},
new Region
{
FlagName = "CN",
FullName = "China",
Acronym = "CHN"
},
new Region
{
FlagName = "AU",
FullName = "Australia",
Acronym = "AUS"
},
new Region
{
FlagName = "JP",
FullName = "Japan",
Acronym = "JPN"
},
new Region
{
FlagName = "RO",
FullName = "Romania",
Acronym = "ROM"
},
new Region
{
FlagName = "IT",
FullName = "Italy",
Acronym = "PIZZA"
},
new Region
{
FlagName = "VE",
FullName = "Venezuela",
Acronym = "VNZ"
},
new Region
2017-03-03 17:47:56 +08:00
{
FlagName = "US",
FullName = "United States of America",
Acronym = "USA"
},
};
2017-02-27 13:19:07 +08:00
}
}
}