mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
36 lines
1.3 KiB
C#
36 lines
1.3 KiB
C#
// 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;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.Comments;
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
|
{
|
|
[TestFixture]
|
|
public class TestSceneCommentsHeader : OsuTestScene
|
|
{
|
|
[Cached]
|
|
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
|
|
|
|
private readonly Bindable<CommentsSortCriteria> sort = new Bindable<CommentsSortCriteria>();
|
|
private readonly BindableBool showDeleted = new BindableBool();
|
|
|
|
public TestSceneCommentsHeader()
|
|
{
|
|
Add(new CommentsHeader
|
|
{
|
|
Sort = { BindTarget = sort },
|
|
ShowDeleted = { BindTarget = showDeleted }
|
|
});
|
|
|
|
AddStep("Trigger ShowDeleted", () => showDeleted.Value = !showDeleted.Value);
|
|
AddStep("Select old", () => sort.Value = CommentsSortCriteria.Old);
|
|
AddStep("Select new", () => sort.Value = CommentsSortCriteria.New);
|
|
AddStep("Select top", () => sort.Value = CommentsSortCriteria.Top);
|
|
}
|
|
}
|
|
}
|