| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Controller
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id $
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'Zend_Controller_AllTests::main');
- }
- require_once 'ActionTest.php';
- require_once 'Action/HelperBrokerTest.php';
- require_once 'Action/Helper/AllTests.php';
- require_once 'Dispatcher/StandardTest.php';
- require_once 'FrontTest.php';
- require_once 'Plugin/ActionStackTest.php';
- require_once 'Plugin/BrokerTest.php';
- require_once 'Plugin/ErrorHandlerTest.php';
- require_once 'Plugin/PutHandlerTest.php';
- require_once 'Request/Apache404Test.php';
- require_once 'Request/HttpTest.php';
- require_once 'Request/HttpTestCaseTest.php';
- require_once 'Request/SimpleTest.php';
- require_once 'Response/HttpTest.php';
- require_once 'Response/HttpTestCaseTest.php';
- require_once 'Router/RouteTest.php';
- require_once 'Router/Route/ModuleTest.php';
- require_once 'Router/Route/RegexTest.php';
- require_once 'Router/Route/StaticTest.php';
- require_once 'Router/Route/HostnameTest.php';
- require_once 'Router/Route/ChainTest.php';
- require_once 'Router/RewriteTest.php';
- /**
- * @category Zend
- * @package Zend_Controller
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Controller
- */
- class Zend_Controller_AllTests
- {
- public static function main()
- {
- PHPUnit_TextUI_TestRunner::run(self::suite());
- }
- public static function suite()
- {
- $suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Controller');
- $suite->addTestSuite('Zend_Controller_ActionTest');
- $suite->addTestSuite('Zend_Controller_Action_HelperBrokerTest');
- $suite->addTest(Zend_Controller_Action_Helper_AllTests::suite());
- $suite->addTestSuite('Zend_Controller_Dispatcher_StandardTest');
- $suite->addTestSuite('Zend_Controller_FrontTest');
- $suite->addTestSuite('Zend_Controller_Plugin_ActionStackTest');
- $suite->addTestSuite('Zend_Controller_Plugin_BrokerTest');
- $suite->addTestSuite('Zend_Controller_Plugin_ErrorHandlerTest');
- $suite->addTestSuite('Zend_Controller_Plugin_PutHandlerTest');
- $suite->addTestSuite('Zend_Controller_Request_Apache404Test');
- $suite->addTestSuite('Zend_Controller_Request_HttpTest');
- $suite->addTestSuite('Zend_Controller_Request_HttpTestCaseTest');
- $suite->addTestSuite('Zend_Controller_Request_SimpleTest');
- $suite->addTestSuite('Zend_Controller_Response_HttpTest');
- $suite->addTestSuite('Zend_Controller_Response_HttpTestCaseTest');
- $suite->addTestSuite('Zend_Controller_Router_RouteTest');
- $suite->addTestSuite('Zend_Controller_Router_Route_ModuleTest');
- $suite->addTestSuite('Zend_Controller_Router_Route_RegexTest');
- $suite->addTestSuite('Zend_Controller_Router_Route_StaticTest');
- $suite->addTestSuite('Zend_Controller_Router_Route_HostnameTest');
- $suite->addTestSuite('Zend_Controller_Router_Route_ChainTest');
- $suite->addTestSuite('Zend_Controller_Router_RewriteTest');
- return $suite;
- }
- }
- if (PHPUnit_MAIN_METHOD == 'Zend_Controller_AllTests::main') {
- Zend_Controller_AllTests::main();
- }
|