mirror of
https://github.com/ppy/osu.git
synced 2024-11-09 02:37:57 +08:00
24 lines
610 B
C#
24 lines
610 B
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.Framework.Testing;
|
||
|
using osu.Game.Overlays;
|
||
|
|
||
|
namespace osu.Desktop.VisualTests.Tests
|
||
|
{
|
||
|
public class TestCaseSocial : TestCase
|
||
|
{
|
||
|
public override string Description => @"social browser overlay";
|
||
|
|
||
|
public override void Reset()
|
||
|
{
|
||
|
base.Reset();
|
||
|
|
||
|
SocialOverlay s = new SocialOverlay();
|
||
|
Add(s);
|
||
|
|
||
|
AddStep(@"toggle", s.ToggleVisibility);
|
||
|
}
|
||
|
}
|
||
|
}
|