PostfixAdmin - web based virtual user administration interface for Postfix mail servers https://postfixadmin.github.io/postfixadmin/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
507 B

  1. <?php
  2. /**
  3. * Responsible for test suite...
  4. * @package tests
  5. */
  6. require_once(dirname(__FILE__) . '/common.php');
  7. require_once('simpletest/reporter.php');
  8. require_once('simpletest/unit_tester.php');
  9. $test = new GroupTest('Postfixadmin XMLRPC Unit Tests');
  10. $test->addTestFile('./RemoteVacationTest.php');
  11. $test->addTestFile('./RemoteUserTest.php');
  12. $test->addTestFile('./RemoteAliasTest.php');
  13. exit($test->run(new TextReporter()) ? 0 : 1);
  14. /* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */