From a83efbfa5c258961077502ebfaff3c06c419b806 Mon Sep 17 00:00:00 2001 From: Jens True Date: Wed, 6 May 2026 07:48:44 +0000 Subject: [PATCH] Upgrade PHPUnit --- .phive/phars.xml | 8 ++++---- psalm-baseline.xml | 7 +------ tests/SkillCalculatorTest.php | 29 ----------------------------- 3 files changed, 5 insertions(+), 39 deletions(-) delete mode 100644 tests/SkillCalculatorTest.php diff --git a/.phive/phars.xml b/.phive/phars.xml index 6b6a9bc..4e3a22b 100644 --- a/.phive/phars.xml +++ b/.phive/phars.xml @@ -1,12 +1,12 @@ - - + + - + - + diff --git a/psalm-baseline.xml b/psalm-baseline.xml index 1ec2ea5..8f3fc6e 100644 --- a/psalm-baseline.xml +++ b/psalm-baseline.xml @@ -1,5 +1,5 @@ - + @@ -274,11 +274,6 @@ - - - - - getId()]]]> diff --git a/tests/SkillCalculatorTest.php b/tests/SkillCalculatorTest.php deleted file mode 100644 index b2dc32f..0000000 --- a/tests/SkillCalculatorTest.php +++ /dev/null @@ -1,29 +0,0 @@ -getMockForAbstractClass(SkillCalculator::class, [SkillCalculator::PARTIAL_PLAY, new TeamsRange(1, 2), new PlayersRange(1, 2)]); - - $this->assertEquals(TRUE, $calculator->isSupported(SkillCalculator::PARTIAL_PLAY)); - $this->assertEquals(FALSE, $calculator->isSupported(SkillCalculator::PARTIAL_UPDATE)); - } -}