2019-10-10 17:06:25 +08: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 NUnit.Framework;
|
2020-01-27 19:58:27 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-10-10 17:06:25 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2020-01-27 19:58:27 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2019-10-10 17:06:25 +08:00
|
|
|
|
using osu.Game.Overlays.Comments;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestSceneCommentsHeader : OsuTestScene
|
|
|
|
|
{
|
2020-01-27 19:58:27 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
|
|
2019-10-10 20:56:08 +08:00
|
|
|
|
private readonly Bindable<CommentsSortCriteria> sort = new Bindable<CommentsSortCriteria>();
|
2019-10-10 17:06:25 +08:00
|
|
|
|
private readonly BindableBool showDeleted = new BindableBool();
|
|
|
|
|
|
|
|
|
|
public TestSceneCommentsHeader()
|
|
|
|
|
{
|
|
|
|
|
Add(new CommentsHeader
|
|
|
|
|
{
|
|
|
|
|
Sort = { BindTarget = sort },
|
|
|
|
|
ShowDeleted = { BindTarget = showDeleted }
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep("Trigger ShowDeleted", () => showDeleted.Value = !showDeleted.Value);
|
2019-10-10 20:56:08 +08:00
|
|
|
|
AddStep("Select old", () => sort.Value = CommentsSortCriteria.Old);
|
|
|
|
|
AddStep("Select new", () => sort.Value = CommentsSortCriteria.New);
|
|
|
|
|
AddStep("Select top", () => sort.Value = CommentsSortCriteria.Top);
|
2019-10-10 17:06:25 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|