2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-09-18 21:32:49 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-11-23 15:00:33 +08:00
|
|
|
|
using System.ComponentModel;
|
2017-09-18 21:32:49 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
|
|
|
{
|
2017-11-23 15:00:33 +08:00
|
|
|
|
[Description("Testing chat api and overlay")]
|
2017-12-20 20:47:45 +08:00
|
|
|
|
public class TestCaseChatDisplay : OsuTestCase
|
2017-09-18 21:32:49 +08:00
|
|
|
|
{
|
|
|
|
|
public TestCaseChatDisplay()
|
|
|
|
|
{
|
|
|
|
|
Add(new ChatOverlay
|
|
|
|
|
{
|
|
|
|
|
State = Visibility.Visible
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|