getClient()->getKernel()); $application->add(new TagAllCommand()); $command = $application->find('wallabag:tag:all'); $tester = new CommandTester($command); $tester->execute([ 'command' => $command->getName(), ]); } public function testRunTagAllCommandWithBadUsername() { $application = new Application($this->getClient()->getKernel()); $application->add(new TagAllCommand()); $command = $application->find('wallabag:tag:all'); $tester = new CommandTester($command); $tester->execute([ 'command' => $command->getName(), 'username' => 'unknown', ]); $this->assertContains('User "unknown" not found', $tester->getDisplay()); } public function testRunTagAllCommand() { $application = new Application($this->getClient()->getKernel()); $application->add(new TagAllCommand()); $command = $application->find('wallabag:tag:all'); $tester = new CommandTester($command); $tester->execute([ 'command' => $command->getName(), 'username' => 'admin', ]); $this->assertContains('Tagging entries for user « admin »... Done', $tester->getDisplay()); } }