// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Linq; using NUnit.Framework; using osu.Framework.Allocation; using osu.Game.Graphics.UserInterface; using osu.Game.Overlays; namespace osu.Game.Tests.Visual.UserInterface { [TestFixture] public class TestSceneShearedOverlayHeader : OsuTestScene { [Cached] private OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Green); [Test] public void TestShearedOverlayHeader() { AddStep("create content", () => { Child = new ShearedOverlayHeader { Title = "Sheared overlay header", Description = string.Join(" ", Enumerable.Repeat("This is a description.", 20)), Close = () => { } }; }); } [Test] public void TestDisabledExit() { AddStep("create content", () => { Child = new ShearedOverlayHeader { Title = "Sheared overlay header", Description = "This is a description." }; }); } } }