| | |
| | | +-----------------------------------------------------------------------+ |
| | | | tests/runtests.sh | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2009, RoundCube Dev. - Switzerland | |
| | | | This file is part of the Roundcube Webmail client | |
| | | | Copyright (C) 2009, The Roundcube Dev Team | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | |
| | | if (!defined('INSTALL_PATH')) define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' ); |
| | | |
| | | define('TESTS_DIR', dirname(__FILE__) . '/'); |
| | | define('RCMAIL_CONFIG_DIR', TESTS_DIR . 'config'); |
| | | |
| | | require_once(SIMPLETEST . 'unit_tester.php'); |
| | | require_once(SIMPLETEST . 'reporter.php'); |
| | |
| | | $testfiles = glob(TESTS_DIR . '*.php'); |
| | | } |
| | | |
| | | $test = new TestSuite('RoundCube unit tests'); |
| | | $test = new TestSuite('Roundcube unit tests'); |
| | | $reporter = new TextReporter(); |
| | | |
| | | foreach ($testfiles as $fn) { |