| 1 | <?php |
||
| 15 | class MainTest extends \PHPUnit_Framework_TestCase |
||
| 16 | { |
||
| 17 | public function testRun() |
||
| 18 | { |
||
| 19 | $output = new NullOutput(); |
||
| 20 | $input = new ArrayInput([ |
||
| 21 | 'command' => 'run', |
||
| 22 | 'hook' => 'pre-push', |
||
| 23 | '--configuration' => HMU_PATH_FILES . DIRECTORY_SEPARATOR . 'config/valid.json' |
||
| 24 | ]); |
||
| 25 | $app = new Main(); |
||
| 26 | $app->setAutoExit(false); |
||
| 27 | $app->run($input, $output); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |