You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2026-01-14 12:02:20 +03:00
git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@581 a1433add-5e2c-0410-b055-b7f2511e0802
15 lines
519 B
PHP
15 lines
519 B
PHP
<?php
|
|
// $Id: detached_test.php,v 1.2 2006/11/20 23:44:37 lastcraft Exp $
|
|
require_once('../detached.php');
|
|
require_once('../reporter.php');
|
|
|
|
// The following URL will depend on your own installation.
|
|
$command = 'php ' . dirname(__FILE__) . '/visual_test.php xml';
|
|
|
|
$test = &new TestSuite('Remote tests');
|
|
$test->addTestCase(new DetachedTestCase($command));
|
|
if (SimpleReporter::inCli()) {
|
|
exit ($test->run(new TextReporter()) ? 0 : 1);
|
|
}
|
|
$test->run(new HtmlReporter());
|
|
?>
|