mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-02-12 06:56:24 +00:00
17 lines
543 B
PHP
17 lines
543 B
PHP
![]() |
<?php
|
||
|
// $Id$
|
||
|
require_once('../remote.php');
|
||
|
require_once('../reporter.php');
|
||
|
|
||
|
// The following URL will depend on your own installation.
|
||
|
$base_url = 'http://uno/simple/';
|
||
|
|
||
|
$test = &new GroupTest('Remote tests');
|
||
|
$test->addTestCase(new RemoteTestCase(
|
||
|
$base_url . 'test/visual_test.php?xml=yes',
|
||
|
$base_url . 'test/visual_test.php?xml=yes&dry=yes'));
|
||
|
if (SimpleReporter::inCli()) {
|
||
|
exit ($test->run(new XmlReporter()) ? 0 : 1);
|
||
|
}
|
||
|
$test->run(new HtmlReporter());
|
||
|
?>
|