You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
507 B
PHP
20 lines
507 B
PHP
<?php
|
|
/**
|
|
* Responsible for test suite...
|
|
* @package tests
|
|
*/
|
|
require_once(dirname(__FILE__) . '/common.php');
|
|
|
|
require_once('simpletest/reporter.php');
|
|
require_once('simpletest/unit_tester.php');
|
|
|
|
$test = new GroupTest('Postfixadmin XMLRPC Unit Tests');
|
|
|
|
$test->addTestFile('./RemoteVacationTest.php');
|
|
$test->addTestFile('./RemoteUserTest.php');
|
|
$test->addTestFile('./RemoteAliasTest.php');
|
|
|
|
exit($test->run(new TextReporter()) ? 0 : 1);
|
|
|
|
/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
|