1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:03:22 +08:00

use values closer to the extremities for test cases

This commit is contained in:
Walavouchey 2023-02-09 00:02:32 +01:00
parent ee40444fd3
commit 9544a1d26d

View File

@ -27,16 +27,16 @@ namespace osu.Game.Tests.Visual.Ranking
[TestCase(0, ScoreRank.D)]
[TestCase(0.2, ScoreRank.D)]
[TestCase(0.5, ScoreRank.D)]
[TestCase(0.699, ScoreRank.D)]
[TestCase(0.6999, ScoreRank.D)]
[TestCase(0.7, ScoreRank.C)]
[TestCase(0.75, ScoreRank.C)]
[TestCase(0.799, ScoreRank.C)]
[TestCase(0.80, ScoreRank.B)]
[TestCase(0.7999, ScoreRank.C)]
[TestCase(0.8, ScoreRank.B)]
[TestCase(0.85, ScoreRank.B)]
[TestCase(0.899, ScoreRank.B)]
[TestCase(0.8999, ScoreRank.B)]
[TestCase(0.9, ScoreRank.A)]
[TestCase(0.925, ScoreRank.A)]
[TestCase(0.949, ScoreRank.A)]
[TestCase(0.9499, ScoreRank.A)]
[TestCase(0.95, ScoreRank.S)]
[TestCase(0.975, ScoreRank.S)]
[TestCase(0.9999, ScoreRank.S)]