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/Server/Reflection/MethodTest.php

113 lines
3.4 KiB
PHP

<?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_Server
* @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: MethodTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
require_once 'Zend/Server/Reflection/Method.php';
require_once 'PHPUnit/Framework/TestCase.php';
require_once 'PHPUnit/Framework/IncompleteTestError.php';
require_once 'Zend/Server/Reflection.php';
/**
* Test case for Zend_Server_Reflection_Method
*
* @category Zend
* @package Zend_Server
* @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_Server
*/
class Zend_Server_Reflection_MethodTest extends PHPUnit_Framework_TestCase
{
protected $_classRaw;
protected $_class;
protected $_method;
protected function setUp()
{
$this->_classRaw = new ReflectionClass('Zend_Server_Reflection');
$this->_method = $this->_classRaw->getMethod('reflectClass');
$this->_class = new Zend_Server_Reflection_Class($this->_classRaw);
}
/**
* __construct() test
*
* Call as method call
*
* Expects:
* - class:
* - r:
* - namespace: Optional;
* - argv: Optional; has default;
*
* Returns: void
*/
public function test__construct()
{
$r = new Zend_Server_Reflection_Method($this->_class, $this->_method);
$this->assertTrue($r instanceof Zend_Server_Reflection_Method);
$this->assertTrue($r instanceof Zend_Server_Reflection_Function_Abstract);
$r = new Zend_Server_Reflection_Method($this->_class, $this->_method, 'namespace');
$this->assertEquals('namespace', $r->getNamespace());
}
/**
* getDeclaringClass() test
*
* Call as method call
*
* Returns: Zend_Server_Reflection_Class
*/
public function testGetDeclaringClass()
{
$r = new Zend_Server_Reflection_Method($this->_class, $this->_method);
$class = $r->getDeclaringClass();
$this->assertTrue($class instanceof Zend_Server_Reflection_Class);
$this->assertTrue($this->_class === $class);
}
/**
* __wakeup() test
*
* Call as method call
*
* Returns: void
*/
public function test__wakeup()
{
$r = new Zend_Server_Reflection_Method($this->_class, $this->_method);
$s = serialize($r);
$u = unserialize($s);
$this->assertTrue($u instanceof Zend_Server_Reflection_Method);
$this->assertTrue($u instanceof Zend_Server_Reflection_Function_Abstract);
$this->assertEquals($r->getName(), $u->getName());
$this->assertEquals($r->getDeclaringClass()->getName(), $u->getDeclaringClass()->getName());
}
}