1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 14:07:25 +08:00

Remove test which makes less sense with new algorith

This commit is contained in:
Dean Herbert 2023-10-23 20:01:23 +09:00
parent 4e057b446a
commit 08b7c3d5ad
No known key found for this signature in database

View File

@ -118,19 +118,6 @@ namespace osu.Game.Rulesets.Osu.Tests
Assert.That(history.TotalRotation, Is.EqualTo(180));
}
[Test]
public void TestRewindIntoSegmentThatHasNotCrossedZero()
{
history.ReportDelta(1000, -180);
Assert.That(history.TotalRotation, Is.EqualTo(180));
history.ReportDelta(1500, 90);
Assert.That(history.TotalRotation, Is.EqualTo(180));
history.ReportDelta(2000, 450);
Assert.That(history.TotalRotation, Is.EqualTo(360));
history.ReportDelta(1750, -45);
Assert.That(history.TotalRotation, Is.EqualTo(315));
}
[Test]
public void TestRewindOverDirectionChange()
{