You are here

public function CommandTest::testExecuteMethodNeedsToBeOverridden in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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

CommandTest

Namespace

Symfony\Component\Console\Tests\Command

Code

public function testExecuteMethodNeedsToBeOverridden() {
  $command = new Command('foo');
  $command
    ->run(new StringInput(''), new NullOutput());
}