mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
10 lines
240 B
PHP
10 lines
240 B
PHP
|
<?php
|
||
|
// $Id$
|
||
|
|
||
|
require_once('../unit_tester.php');
|
||
|
require_once('../reporter.php');
|
||
|
|
||
|
$test = &new GroupTest('This should fail');
|
||
|
$test->addTestFile('test_with_parse_error.php');
|
||
|
$test->run(new HtmlReporter());
|
||
|
?>
|