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 ac32825 commit c55bc64Copy full SHA for c55bc64
Tests/Command/LintCommandTest.php
@@ -170,6 +170,10 @@ public function testLintFileNotReadable()
170
*/
171
public function testComplete(array $input, array $expectedSuggestions)
172
{
173
+ if (!class_exists(CommandCompletionTester::class)) {
174
+ $this->markTestSkipped('Test command completion requires symfony/console 5.4+.');
175
+ }
176
+
177
$tester = new CommandCompletionTester($this->createCommand());
178
179
$this->assertSame($expectedSuggestions, $tester->complete($input));
0 commit comments