You are here

public function ApplicationTesterTest::testRun in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php \Symfony\Component\Console\Tests\Tester\ApplicationTesterTest::testRun()

File

vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php, line 42

Class

ApplicationTesterTest

Namespace

Symfony\Component\Console\Tests\Tester

Code

public function testRun() {
  $this
    ->assertFalse($this->tester
    ->getInput()
    ->isInteractive(), '->execute() takes an interactive option');
  $this
    ->assertFalse($this->tester
    ->getOutput()
    ->isDecorated(), '->execute() takes a decorated option');
  $this
    ->assertEquals(Output::VERBOSITY_VERBOSE, $this->tester
    ->getOutput()
    ->getVerbosity(), '->execute() takes a verbosity option');
}