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 4c7ce68 commit 40bca15Copy full SHA for 40bca15
Tests/Command/ServerDumpCommandTest.php
@@ -14,6 +14,10 @@ class ServerDumpCommandTest extends TestCase
14
*/
15
public function testComplete(array $input, array $expectedSuggestions)
16
{
17
+ if (!class_exists(CommandCompletionTester::class)) {
18
+ $this->markTestSkipped('Test command completion requires symfony/console 5.4+.');
19
+ }
20
+
21
$tester = new CommandCompletionTester($this->createCommand());
22
23
$this->assertSame($expectedSuggestions, $tester->complete($input));
0 commit comments