We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8ea0e2 commit 7a5fca2Copy full SHA for 7a5fca2
webapp/tests/Unit/Service/ScoreboardServiceTest.php
@@ -125,6 +125,13 @@ public function testOneTeamEmpty(): void
125
self::assertTrue($teamA < $teamB);
126
}
127
128
+ public function testOneTeamSolvedMore(): void
129
+ {
130
+ $teamA = ScoreboardService::getICPCScoreKey(1, 333, 210);
131
+ $teamB = ScoreboardService::getICPCScoreKey(7, 666, 420);
132
+ self::assertTrue($teamA < $teamB);
133
+ }
134
+
135
public function testEqualExceptLast(): void
136
{
137
$teamA = ScoreboardService::getICPCScoreKey(7, 666, 420);
0 commit comments