1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

PHPStan/tests updates (#11996)

* Remove a bunch of inline ignores and migrate all PHPUnit assertions to static calls

* Update baseline (1573, 93)

* Update commit hash
This commit is contained in:
Jordi Boggiano 2024-05-29 23:12:06 +02:00 committed by GitHub
parent dd8af946fd
commit 37d722e73c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
141 changed files with 1342 additions and 1382 deletions

View file

@ -41,10 +41,10 @@ class BumpCommandTest extends TestCase
}
$appTester = $this->getApplicationTester();
$this->assertSame($exitCode, $appTester->run(array_merge(['command' => 'bump'], $command)));
self::assertSame($exitCode, $appTester->run(array_merge(['command' => 'bump'], $command)));
$json = new JsonFile('./composer.json');
$this->assertSame($expected, $json->read());
self::assertSame($expected, $json->read());
}
public function testBumpFailsOnNonExistingComposerFile(): void
@ -54,9 +54,9 @@ class BumpCommandTest extends TestCase
unlink($composerJsonPath);
$appTester = $this->getApplicationTester();
$this->assertSame(1, $appTester->run(['command' => 'bump'], ['capture_stderr_separately' => true]));
self::assertSame(1, $appTester->run(['command' => 'bump'], ['capture_stderr_separately' => true]));
$this->assertStringContainsString("./composer.json is not readable.", $appTester->getErrorOutput());
self::assertStringContainsString("./composer.json is not readable.", $appTester->getErrorOutput());
}
public function testBumpFailsOnWriteErrorToComposerFile(): void
@ -66,9 +66,9 @@ class BumpCommandTest extends TestCase
chmod($composerJsonPath, 0444);
$appTester = $this->getApplicationTester();
$this->assertSame(1, $appTester->run(['command' => 'bump'], ['capture_stderr_separately' => true]));
self::assertSame(1, $appTester->run(['command' => 'bump'], ['capture_stderr_separately' => true]));
$this->assertStringContainsString("./composer.json is not writable.", $appTester->getErrorOutput());
self::assertStringContainsString("./composer.json is not writable.", $appTester->getErrorOutput());
}
public static function provideTests(): \Generator