You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Controller/Request/SimpleTest.php

82 lines
2.9 KiB
PHTML

<?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-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: SimpleTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
// Call Zend_Controller_Request_SimpleTest::main() if this source file is executed directly.
if (!defined("PHPUnit_MAIN_METHOD")) {
require_once dirname(dirname(dirname(dirname(__FILE__)))) . '/TestHelper.php';
define("PHPUnit_MAIN_METHOD", "Zend_Controller_Request_SimpleTest::main");
}
require_once "PHPUnit/Framework/TestCase.php";
require_once "PHPUnit/Framework/TestSuite.php";
require_once 'Zend/Controller/Request/Simple.php';
/**
* Test class for Zend_Controller_Request_Simple.
*
* @category Zend
* @package Zend_Controller
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Controller
* @group Zend_Controller_Request
*/
class Zend_Controller_Request_SimpleTest extends PHPUnit_Framework_TestCase
{
/**
* Runs the test methods of this class.
*
* @access public
* @static
*/
public static function main()
{
require_once "PHPUnit/TextUI/TestRunner.php";
$suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Request_SimpleTest");
$result = PHPUnit_TextUI_TestRunner::run($suite);
}
public function testSimpleRequestIsOfAbstractRequestType()
{
$request = new Zend_Controller_Request_Simple();
$this->assertTrue($request instanceof Zend_Controller_Request_Abstract);
}
public function testSimpleReqestRetainsValuesPassedFromConstructor()
{
$request = new Zend_Controller_Request_Simple('test1', 'test2', 'test3', array('test4' => 'test5'));
$this->assertEquals($request->getActionName(), 'test1');
$this->assertEquals($request->getControllerName(), 'test2');
$this->assertEquals($request->getModuleName(), 'test3');
$this->assertEquals($request->getParam('test4'), 'test5');
}
}
// Call Zend_Controller_Request_SimpleTest::main() if this source file is executed directly.
if (PHPUnit_MAIN_METHOD == "Zend_Controller_Request_SimpleTest::main") {
Zend_Controller_Request_SimpleTest::main();
}