Thomas Bruederli
2012-07-05 4478eb31b3b6d2d000852ae6c8925f5c6ec1d8e0
tests/runtests.sh
@@ -5,9 +5,12 @@
 +-----------------------------------------------------------------------+
 | tests/runtests.sh                                                     |
 |                                                                       |
 | This file is part of the RoundCube Webmail client                     |
 | Copyright (C) 2009, RoundCube Dev. - Switzerland                      |
 | Licensed under the GNU GPL                                            |
 | This file is part of the Roundcube Webmail client                     |
 | Copyright (C) 2009, The Roundcube Dev Team                            |
 |                                                                       |
 | Licensed under the GNU General Public License version 3 or            |
 | any later version with exceptions for skins & plugins.                |
 | See the README file for a full license statement.                     |
 |                                                                       |
 | PURPOSE:                                                              |
 |   Run-script for unit tests based on http://simpletest.org            |
@@ -15,9 +18,6 @@
 +-----------------------------------------------------------------------+
 | Author: Thomas Bruederli <roundcube@gmail.com>                        |
 +-----------------------------------------------------------------------+
 $Id:  $
*/
if (php_sapi_name() != 'cli')
@@ -27,6 +27,7 @@
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');
@@ -41,7 +42,7 @@
  $testfiles = glob(TESTS_DIR . '*.php');
}
$test = new TestSuite('RoundCube unit tests');
$test = new TestSuite('Roundcube unit tests');
$reporter = new TextReporter();
foreach ($testfiles as $fn) {
@@ -50,4 +51,4 @@
$test->run($reporter);
?>
?>