HEX
Server: LiteSpeed
System: Linux s1.hostssdserver.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: dreamlan (1220)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/dreamlan/php/tests/HTTP_Session2/tests/AllTests.php
<?php
//
// +---------------------------------------------------------------------------+
// | PEAR :: HTTP :: Session2                                                  |
// +---------------------------------------------------------------------------+
// | Copyright (c) 2005 Tony Bibbs <tony@geeklog.net>                          |
// +---------------------------------------------------------------------------+
// | This source file is subject to version 3.00 of the PHP License,           |
// | that is available at http://www.php.net/license/3_0.txt.                  |
// | If you did not receive a copy of the PHP license and are unable to        |
// | obtain it through the world-wide-web, please send a note to               |
// | license@php.net so we can mail you a copy immediately.                    |
// +---------------------------------------------------------------------------+
//
// $Id: AllTests.php,v 1.3 2007/12/12 16:48:31 till Exp $
//

if (!defined('PHPUnit2_MAIN_METHOD')) {
    define('PHPUnit2_MAIN_METHOD', 'HTTP_Session2_Tests_AllTests::main');
}

require_once 'PHPUnit2/Framework/TestSuite.php';
require_once 'PHPUnit2/TextUI/TestRunner.php';

require_once 'PHPUnit2/Tests/Session2Test.php';

/**
 * @author      Tony Bibbs <tony@geeklog.net>
 * @copyright   Copyright &copy; 2005 Tony Bibbs
 * @license     http://www.opensource.org/licenses/bsd-license.php The BSD License
 * @category    HTTP
 * @package     HTTP_Session2
 */
class HTTP_Session2_AllTests
{
    public static function main()
    {
        PHPUnit2_TextUI_TestRunner::run(self::suite());
    }

    public static function suite()
    {
        $suite = new PHPUnit2_Framework_TestSuite('HTTP Session2');

        $suite->addTestSuite('HTTP_Session2_Tests_Session2Test');

        return $suite;
    }
}

if (PHPUnit2_MAIN_METHOD == 'HTTP_Session2_Tests_AllTests::main') {
    HTTP_Session2_Tests_AllTests::main();
}

?>