1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 22:33:05 +08:00

Remove test terminally broken by introduction of slider drawing

This commit is contained in:
Bartłomiej Dach 2023-11-20 15:34:23 +09:00
parent 46d4587c97
commit 5f302662be
No known key found for this signature in database

View File

@ -273,23 +273,6 @@ namespace osu.Game.Rulesets.Osu.Tests.Editor
assertControlPointType(2, PathType.PERFECT_CURVE); assertControlPointType(2, PathType.PERFECT_CURVE);
} }
[Test]
public void TestBeginPlacementWithoutReleasingMouse()
{
addMovementStep(new Vector2(200));
AddStep("press left button", () => InputManager.PressButton(MouseButton.Left));
addMovementStep(new Vector2(400, 200));
AddStep("release left button", () => InputManager.ReleaseButton(MouseButton.Left));
addClickStep(MouseButton.Right);
assertPlaced(true);
assertLength(200);
assertControlPointCount(2);
assertControlPointType(0, PathType.LINEAR);
}
[Test] [Test]
public void TestSliderDrawing() public void TestSliderDrawing()
{ {