setPass(new ExitPass()); } /** * @dataProvider dataProviderExitStatement */ public function testExitStatement($from, $to) { $this->assertProcessesAs($from, $to); } /** * Data provider for testExitStatement. * * @return array */ public function dataProviderExitStatement() { return array( array('exit;', $this->expectedExceptionString), array('exit();', $this->expectedExceptionString), array('die;', $this->expectedExceptionString), array('if (true) { exit; }', "if (true) {\n $this->expectedExceptionString\n}"), array('if (false) { exit; }', "if (false) {\n $this->expectedExceptionString\n}"), ); } }