mirror of https://github.com/ppy/osu
Add failing test coverage showing hitobject local control points are defaults
This commit is contained in:
parent
5e5b86a1f4
commit
b259192a8a
|
@ -56,6 +56,11 @@ public void TestNewBeatmapSaveThenLoad()
|
|||
|
||||
checkMutations();
|
||||
|
||||
// After placement these must be non-default as defaults are read-only.
|
||||
AddAssert("Placed object has non-default control points", () =>
|
||||
editorBeatmap.HitObjects[0].SampleControlPoint != SampleControlPoint.DEFAULT &&
|
||||
editorBeatmap.HitObjects[0].DifficultyControlPoint != DifficultyControlPoint.DEFAULT);
|
||||
|
||||
AddStep("Save", () => InputManager.Keys(PlatformAction.Save));
|
||||
|
||||
checkMutations();
|
||||
|
|
Loading…
Reference in New Issue