diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-16 19:44:28 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-16 19:44:28 +0200 |
commit | e824925290a0fdf3852f4562dc459a4cbd4e5768 (patch) | |
tree | f361c9ffcc427c28657cab77602011bcdff30f08 /tests/runtests.sh | |
parent | 6ab9369eb194e4dde0cc830a84466dd240e95b23 (diff) |
Rewritten test scripts for PHPUnit
Diffstat (limited to 'tests/runtests.sh')
-rwxr-xr-x | tests/runtests.sh | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/runtests.sh b/tests/runtests.sh deleted file mode 100755 index 9cfeb0a25..000000000 --- a/tests/runtests.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env php -<?php - -/* - +-----------------------------------------------------------------------+ - | tests/runtests.sh | - | | - | 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 | - | All .php files in this folder will be treated as tests | - +-----------------------------------------------------------------------+ - | Author: Thomas Bruederli <roundcube@gmail.com> | - +-----------------------------------------------------------------------+ -*/ - -if (php_sapi_name() != 'cli') - die("Not in shell mode (php-cli)"); - -if (!defined('SIMPLETEST')) define('SIMPLETEST', '/www/simpletest/'); -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'); -require_once(INSTALL_PATH . 'program/include/iniset.php'); - -if (count($_SERVER['argv']) > 1) { - $testfiles = array(); - for ($i=1; $i < count($_SERVER['argv']); $i++) - $testfiles[] = realpath('./' . $_SERVER['argv'][$i]); -} -else { - $testfiles = glob(TESTS_DIR . '*.php'); -} - -$test = new TestSuite('Roundcube unit tests'); -$reporter = new TextReporter(); - -foreach ($testfiles as $fn) { - $test->addTestFile($fn); -} - -$test->run($reporter); - -?> |