Fix formatting + Add tests + fix touch UI

This commit is contained in:
Josh
2022-08-15 17:23:29 +08:00
parent 09e45f39b2
commit ff497c452f
3 changed files with 110 additions and 40 deletions

View File

@ -0,0 +1,45 @@
// 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.
#nullable disable
using NUnit.Framework;
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osu.Game.Rulesets.Catch.UI;
using osu.Game.Tests.Visual;
namespace osu.Game.Rulesets.Catch.Tests
{
[TestFixture]
public class TestSceneCatchTouchInput : OsuTestScene
{
private TouchInputField touchInputField = null!;
[SetUpSteps]
public void SetUpSteps()
{
AddStep("create inputfield", () =>
{
Child = new CatchInputManager(new CatchRuleset().RulesetInfo)
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
touchInputField = new TouchInputField
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre
}
}
};
});
}
[Test]
public void TestInputField()
{
AddStep("show inputfield", () => touchInputField.Show());
}
}
}