setAutoExit(false); // Set autoExit to false when testing $app->setCatchExceptions(false); $appTester = new ApplicationTester($app); $appTester->run(array('command' => $command)); $stream = $appTester->getOutput()->getStream(); rewind($stream); $this->assertRegExp($result, stream_get_contents($stream)); } public function provider() { return array( array('help', '/help \[options\] \[--\] \[\]/') ); } }