diff --git a/tests/Unit/Calculators/Dominion/RangeCalculatorTest.php b/tests/Unit/Calculators/Dominion/RangeCalculatorTest.php index 3180ef2925ad0465e97aa149af206ae5a64f5147..7d700815766d11b7b214dbc040a26746fc0f1999 100644 --- a/tests/Unit/Calculators/Dominion/RangeCalculatorTest.php +++ b/tests/Unit/Calculators/Dominion/RangeCalculatorTest.php @@ -200,7 +200,7 @@ class RangeCalculatorTest extends AbstractBrowserKitTestCase $this->guardMembershipService->shouldReceive('joinRoyalGuard')->with($this->selfDominion)->once(); $this->sut->checkGuardApplications($this->selfDominion, $this->targetDominion); - + // Assert that mock expectations were verified (joinRoyalGuard called once due to out-of-range violation) $this->addToAssertionCount(1); } @@ -217,7 +217,7 @@ class RangeCalculatorTest extends AbstractBrowserKitTestCase $this->guardMembershipService->shouldReceive('joinEliteGuard')->never(); $this->sut->checkGuardApplications($this->selfDominion, $this->targetDominion); - + // Assert that mock expectations were verified (joinEliteGuard never called due to in-range status) $this->addToAssertionCount(1); } @@ -232,7 +232,7 @@ class RangeCalculatorTest extends AbstractBrowserKitTestCase $this->guardMembershipService->shouldReceive('joinEliteGuard')->never(); $this->sut->checkGuardApplications($this->selfDominion, $this->targetDominion); - + // Assert that mock expectations were verified (no guard methods called for non-guard member) $this->addToAssertionCount(1); }