1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00
osu-lazer/osu.Game.Tests/Visual/Menus/TestSceneToolbar.cs

45 lines
1.4 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using osu.Framework.Graphics.Containers;
using osu.Game.Overlays.Toolbar;
2019-03-25 00:02:36 +08:00
namespace osu.Game.Tests.Visual.Menus
2018-04-13 17:19:50 +08:00
{
[TestFixture]
public class TestSceneToolbar : OsuTestScene
2018-04-13 17:19:50 +08:00
{
public override IReadOnlyList<Type> RequiredTypes => new[]
{
typeof(ToolbarButton),
2018-07-10 00:20:21 +08:00
typeof(ToolbarRulesetSelector),
2019-06-13 01:51:21 +08:00
typeof(ToolbarRulesetTabButton),
2018-04-13 17:19:50 +08:00
typeof(ToolbarNotificationButton),
};
public TestSceneToolbar()
2018-04-13 17:19:50 +08:00
{
var toolbar = new Toolbar { State = { Value = Visibility.Visible } };
2019-03-08 11:30:52 +08:00
ToolbarNotificationButton notificationButton = null;
2018-04-13 17:19:50 +08:00
2019-03-08 11:30:52 +08:00
AddStep("create toolbar", () =>
{
Add(toolbar);
notificationButton = toolbar.Children.OfType<FillFlowContainer>().Last().Children.OfType<ToolbarNotificationButton>().First();
});
2018-04-13 17:19:50 +08:00
void setNotifications(int count) => AddStep($"set notification count to {count}", () => notificationButton.NotificationCount.Value = count);
setNotifications(1);
setNotifications(2);
setNotifications(3);
setNotifications(0);
setNotifications(144);
}
}
}