We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplified reproducible example:
class AssertCountProblemTest extends TestCase { /** * @var list<string> */ private static array $database = []; public function testFoo(): void { self::assertCount(0, $this->getDataFromDatabase()); self::editDataInDatabase(); $newData = $this->getDataFromDatabase(); self::assertCount(1, $newData); // error: Call to static method PHPUnit\Framework\Assert::assertCount() with 1 and array{} will always evaluate to false. } /** * @return list<string> */ private function getDataFromDatabase(): array { return self::$database; } private static function editDataInDatabase(): void { self::$database[] = 'new data'; } }
This poped up while upgrading phpstan-phpunit from 1.3.15 to 1.4.0
1.3.15
1.4.0
The text was updated successfully, but these errors were encountered:
1.3.16 is the version where this breaks.
1.3.16
Sorry, something went wrong.
Same here at version 1.4.1.
1.4.1
I solved temporarly by creating a variable, and using it in the Count function :
// Before : self::assertCount(1, $this->getDataFromDatabase()); // After : $newData = $this->getDataFromDatabase(); self::assertCount(1, $newData);
No branches or pull requests
Simplified reproducible example:
This poped up while upgrading phpstan-phpunit from
1.3.15
to1.4.0
The text was updated successfully, but these errors were encountered: