1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 20:06:30 +08:00

Add the most basic (yet failing) test possible

This commit is contained in:
Bartłomiej Dach
2025-03-17 14:52:09 +01:00
Unverified
parent aa6dfa0a45
commit 613c46d375
@@ -208,5 +208,11 @@ namespace osu.Game.Tests.Visual.Editing
AddAssert("Beatmap still has correct beat divisor", () => EditorBeatmap.BeatmapInfo.BeatDivisor, () => Is.EqualTo(7));
AddAssert("Correct beat divisor actually active", () => Editor.BeatDivisor, () => Is.EqualTo(7));
}
[Test]
public void TestBeatmapVersionPopulatedCorrectly()
{
AddAssert("beatmap version is populated", () => EditorBeatmap.BeatmapInfo.BeatmapVersion > 0);
}
}
}