osu/osu.Game.Tests/Visual/Online/TestSceneCommentsContainer.cs

59 lines
1.7 KiB
C#
Raw Normal View History

2019-10-07 14:49:20 +00: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.
using System;
using System.Collections.Generic;
using NUnit.Framework;
using osu.Game.Online.API.Requests;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Game.Overlays.Comments;
2019-10-07 14:49:20 +00:00
namespace osu.Game.Tests.Visual.Online
{
[TestFixture]
public class TestSceneCommentsContainer : OsuTestScene
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(CommentsContainer),
2019-10-08 17:57:55 +00:00
typeof(CommentsHeader),
typeof(DrawableComment),
2019-10-08 18:38:19 +00:00
typeof(HeaderButton),
2019-10-14 13:43:43 +00:00
typeof(SortTabControl),
2019-10-14 21:32:21 +00:00
typeof(ShowChildrenButton),
typeof(DeletedChildrenPlaceholder)
2019-10-07 14:49:20 +00:00
};
protected override bool UseOnlineAPI => true;
2019-10-07 14:49:20 +00:00
public TestSceneCommentsContainer()
{
BasicScrollContainer scrollFlow;
Add(scrollFlow = new BasicScrollContainer
{
RelativeSizeAxes = Axes.Both,
});
2019-10-07 14:49:20 +00:00
AddStep("Big Black comments", () =>
{
scrollFlow.Clear();
scrollFlow.Add(new CommentsContainer(CommentableType.Beatmapset, 41823));
2019-10-07 14:49:20 +00:00
});
AddStep("Airman comments", () =>
{
scrollFlow.Clear();
scrollFlow.Add(new CommentsContainer(CommentableType.Beatmapset, 24313));
});
2019-10-13 11:43:30 +00:00
AddStep("lazer build comments", () =>
{
scrollFlow.Clear();
scrollFlow.Add(new CommentsContainer(CommentableType.Build, 4772));
});
2019-10-07 14:49:20 +00:00
}
}
}