mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +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());
|
||
|
?>
|