| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?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-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once 'Zend/Server/Reflection/Method.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-2015 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());
- }
- }
|