public function CommandTest::testExecuteMethodNeedsToBeOverridden in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Tests/Command/CommandTest.php \Symfony\Component\Console\Tests\Command\CommandTest::testExecuteMethodNeedsToBeOverridden()
@expectedException \LogicException @expectedExceptionMessage You must override the execute() method in the concrete command class.
File
- vendor/
symfony/ console/ Tests/ Command/ CommandTest.php, line 239
Class
Namespace
Symfony\Component\Console\Tests\CommandCode
public function testExecuteMethodNeedsToBeOverridden() {
$command = new Command('foo');
$command
->run(new StringInput(''), new NullOutput());
}