You've already forked postfixadmin
mirror of
https://github.com/postfixadmin/postfixadmin.git
synced 2025-11-30 23:01:21 +03:00
- added a vim: comment for tab expansion etc. git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@628 a1433add-5e2c-0410-b055-b7f2511e0802
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: */
|