mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
35 lines
1.3 KiB
C#
35 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 System.Linq;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
using osu.Framework.Screens;
|
|
using osu.Framework.Testing;
|
|
using osu.Game.Skinning;
|
|
using osu.Game.Tests.Visual;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Tests
|
|
{
|
|
[TestFixture]
|
|
public partial class TestSceneCatchPlayerLegacySkin : LegacySkinPlayerTestScene
|
|
{
|
|
protected override Ruleset CreatePlayerRuleset() => new CatchRuleset();
|
|
|
|
[Test]
|
|
public void TestLegacyHUDComboCounterNotExistent([Values] bool withModifiedSkin)
|
|
{
|
|
if (withModifiedSkin)
|
|
{
|
|
AddStep("change component scale", () => Player.ChildrenOfType<LegacyScoreCounter>().First().Scale = new Vector2(2f));
|
|
AddStep("update target", () => Player.ChildrenOfType<SkinComponentsContainer>().ForEach(LegacySkin.UpdateDrawableTarget));
|
|
AddStep("exit player", () => Player.Exit());
|
|
CreateTest();
|
|
}
|
|
|
|
AddAssert("legacy HUD combo counter not added", () => !Player.ChildrenOfType<LegacyComboCounter>().Any());
|
|
}
|
|
}
|
|
}
|