ea-Geiertest
[ class tree: ea-Geier ] [ index: ea-Geier ] [ all elements ]

Source for file index.php

Documentation is available at index.php

  1. <?php
  2. /**
  3.  * start simpletest
  4.  *
  5.  * LICENSE:
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
  13.  * GNU General Public License for more details.
  14.  * You should have received a copy of the GNU General Public License along
  15.  * with this program; if not, write to the Free Software Foundation, Inc.,
  16.  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  17.  *
  18.  * @package       ea-Geier
  19.  * @subpackage test
  20.  * @author       m2mtech <tech@m2m.at>
  21.  * @copyright  2007 m2m server software gmbh
  22.  * @license       http://www.gnu.org/licenses/gpl.html GNU General Public License Version 2
  23.  * @version       $Id$
  24.  * @link       http://www.ea-geier.at/
  25.  */
  26.  
  27. chdir('../../')// set root directory
  28.  
  29. /**
  30.  * environment configuration
  31.  */
  32. require_once('code/config.php');
  33.  
  34. /**#@+
  35.  * simpletest library
  36.  */
  37. require_once(eaSIMPLE_TEST 'unit_tester.php');
  38. require_once(eaSIMPLE_TEST 'web_tester.php');
  39. require_once(eaSIMPLE_TEST 'mock_objects.php');
  40. require_once(eaSIMPLE_TEST 'reporter.php');
  41. /**#@-*/
  42.  
  43. ob_start()// allow also session testing - actually useless in php5
  44.  
  45. $test &new TestSuite('All Tests for the ea-Geier');
  46.  
  47. if (!isset($_GET['what'])) $what 'all';
  48. else $what preg_replace('/[^a-z]/'''$_GET['what']);
  49.  
  50. ini_set('memory_limit''16M');
  51.  
  52. if (($what == 'all'|| ($what == 'checkclass')) {
  53.     if ($what != 'all'$test->_label 'Tests of the Validator Class of the ea-Geier';
  54.     $test->addTestFile('test/simpletest/base/check.class.php');
  55. }
  56.     
  57. if (($what == 'all'|| ($what == 'dbclass')) {
  58.     if ($what != 'all'$test->_label 'Tests of the Database Class of the ea-Geier';
  59.     $test->addTestFile('test/simpletest/base/db.class.php');
  60. }
  61.     
  62. if (($what == 'all'|| ($what == 'inputclass')) {
  63.     if ($what != 'all'$test->_label 'Tests of the Input Class of the ea-Geier';
  64.     $test->addTestFile('test/simpletest/base/input.class.php');
  65. }
  66.     
  67. if (($what == 'all'|| ($what == 'mailclass')) {
  68.     if ($what != 'all'$test->_label 'Tests of the Mail Class of the ea-Geier';
  69.     $test->addTestFile('test/simpletest/base/mail.class.php');
  70. }
  71.  
  72. if (($what == 'all'|| ($what == 'smartyclass')) {
  73.     if ($what != 'all'$test->_label 'Tests of the Smarty Class of the ea-Geier';
  74.     $test->addTestFile('test/simpletest/base/smarty.class.php');
  75. }
  76.  
  77. if (($what == 'all'|| ($what == 'newuser')) {
  78.     if ($what != 'all'$test->_label 'Tests of the New-User Functions of the ea-Geier';
  79.     $test->addTestFile('test/simpletest/base/newuser.inc.php');
  80. }
  81.  
  82. if (($what == 'all'|| ($what == 'sendpw')) {
  83.     if ($what != 'all'$test->_label 'Tests of the Send-Password Functions of the ea-Geier';
  84.     $test->addTestFile('test/simpletest/base/sendpw.inc.php');
  85. }
  86.  
  87. if (($what == 'all'|| ($what == 'date')) {
  88.     if ($what != 'all'$test->_label 'Tests of the Date Functions of the ea-Geier';
  89.     $test->addTestFile('test/simpletest/date.inc.php');
  90. }
  91.  
  92. if (($what == 'all'|| ($what == 'numbers')) {
  93.     if ($what != 'all'$test->_label 'Tests of the Number Functions of the ea-Geier';
  94.     $test->addTestFile('test/simpletest/numbers.inc.php');
  95. }
  96.  
  97. $test->run(new HtmlReporter());
  98.  
  99.  
  100. ?>

Documentation generated on Sun, 09 Sep 2007 17:08:52 +0200 by phpDocumentor 1.3.1