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 0fd9ecf commit cdf6571Copy full SHA for cdf6571
Tests/Command/LintCommandTest.php
@@ -141,6 +141,10 @@ public function testLintAutodetectsGithubActionEnvironment()
141
*/
142
public function testComplete(array $input, array $expectedSuggestions)
143
{
144
+ if (!class_exists(CommandCompletionTester::class)) {
145
+ $this->markTestSkipped('Test command completion requires symfony/console 5.4+.');
146
+ }
147
+
148
$tester = new CommandCompletionTester($this->createCommand());
149
150
$this->assertSame($expectedSuggestions, $tester->complete($input));
0 commit comments