5 lines
136 B
PHP
5 lines
136 B
PHP
<?php
|
|
require_once 'SzurubooruTestRunner.php';
|
|
$runner = new SzurubooruTestRunner();
|
|
$success = $runner->run();
|
|
exit($success ? 0 : 1);
|