mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
83 lines
3.2 KiB
C#
83 lines
3.2 KiB
C#
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|||
|
|
|||
|
using osu.Game.Overlays;
|
|||
|
using osu.Game.Users;
|
|||
|
|
|||
|
namespace osu.Game.Tests.Visual
|
|||
|
{
|
|||
|
public class TestCaseSocial : OsuTestCase
|
|||
|
{
|
|||
|
public override string Description => @"social browser overlay";
|
|||
|
|
|||
|
public TestCaseSocial()
|
|||
|
{
|
|||
|
SocialOverlay s = new SocialOverlay
|
|||
|
{
|
|||
|
Users = new[]
|
|||
|
{
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"flyte",
|
|||
|
Id = 3103765,
|
|||
|
Country = new Country { FlagName = @"JP" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c1.jpg",
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"Cookiezi",
|
|||
|
Id = 124493,
|
|||
|
Country = new Country { FlagName = @"KR" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c2.jpg",
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"Angelsim",
|
|||
|
Id = 1777162,
|
|||
|
Country = new Country { FlagName = @"KR" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c3.jpg",
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"Rafis",
|
|||
|
Id = 2558286,
|
|||
|
Country = new Country { FlagName = @"PL" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c4.jpg",
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"hvick225",
|
|||
|
Id = 50265,
|
|||
|
Country = new Country { FlagName = @"TW" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c5.jpg",
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"peppy",
|
|||
|
Id = 2,
|
|||
|
Country = new Country { FlagName = @"AU" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c6.jpg"
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"filsdelama",
|
|||
|
Id = 2831793,
|
|||
|
Country = new Country { FlagName = @"FR" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c7.jpg"
|
|||
|
},
|
|||
|
new User
|
|||
|
{
|
|||
|
Username = @"_index",
|
|||
|
Id = 652457,
|
|||
|
Country = new Country { FlagName = @"RU" },
|
|||
|
CoverUrl = @"https://osu.ppy.sh/images/headers/profile-covers/c8.jpg"
|
|||
|
},
|
|||
|
},
|
|||
|
};
|
|||
|
Add(s);
|
|||
|
|
|||
|
AddStep(@"toggle", s.ToggleVisibility);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|