Heim >Backend-Entwicklung >PHP-Tutorial >Aufruf der privaten Methodenverarbeitung im PHPUnit-Einzeltest
Problemhintergrund: Es gibt ein häufiges Problem bei einzelnen Tests,
被侧类中的private方法无法直接调用
. Xiaoyan übergibt反射改变方法权限,进行单测
während der Verarbeitung, teilt es und lädt den Code direkt hoch.
Einfache Testklasse
Generieren Sie eine einfache Testklasse mit nur einer privaten Methode.
<code><?php /** * 崔小涣单测的基本模板。 * * @author cuihuan * @date 2015/11/12 22:15:31 * @version $Revision:1.0$ **/ class MyClass { /** * 私有方法 * * @param $params * @return bool */ private function privateFunc($params){ if(!isset($params)){ return false; } echo "test success"; return $params; } }</code>
Einzelner Testcode
<code><?php /*************************************************************************** * * $Id: MyClassTest T,v 1.0 PsCaseTest cuihuan Exp$ * **************************************************************************/ /** * 崔小涣单测的基本模板。 * * @author cuihuan * @date 2015/11/12 22:09:31 * @version $Revision:1.0$ **/ <strong>require</strong>_once ('./MyClass.php'); class MyClassTest extends PHPUnit_Framework_TestCase { const CLASS_NAME = 'MyClass'; const FAIL = 'fail'; protected $objMyClass; /** * @brief setup: Sets up the fixture, for example, opens a network connection. * * 可以看做phpunit的构造函数 */ public function setup() { date_default_timezone_set('PRC'); $this->objMyClass = new MyClass(); } /** * 利用反射,对类中的private 和 protect 方法进行单元测试 * * @param $strMethodName string :反射函数名 * @return ReflectionMethod obj :回调对象 */ protected static function getPrivateMethod($strMethodName) { $objReflectClass = new ReflectionClass(self::CLASS_NAME); $method = $objReflectClass->getMethod($strMethodName); $method->setAccessible(true); return $method; } /** * @brief :测试private函数的调用 */ public function testPrivateFunc() { $testCase = 'just a test string'; // 反射该类 $testFunc = self::getPrivateMethod('privateFunc'); $res = $testFunc->invokeArgs($this->objMyClass, array($testCase)); $this->assertEquals($testCase, $res); $this->expectOutputRegex('/success/i'); // 捕获没有参数异常测试 try { $testFunc->invokeArgs($this->transfer2Pscase, array()); } catch (<strong>Exception</strong> $expected) { $this->assertNotNull($expected); return true; } $this->fail(self::FAIL); } }</code>
Laufergebnisse
<code>cuihuan:test cuixiaohuan$ phpunit MyClassTest.php PHPUnit 4.8.6 by Sebastian Bergmann and contributors. Time: 103 ms, Memory: 11.75Mb OK (1 test, 3 assertions)</code>
SchlüsselwörterCodeanalyse
kapselt a , der Reflexionsaufruf der Methode der zu testenden Klasse, 返回方法之前处理方法的接入权限为true
, Sie können auf die private Funktionsmethode zugreifen.
<code>/** * 利用反射,对类中的private 和 protect 方法进行单元测试 * * @param $strMethodName string :反射函数名 * @return ReflectionMethod obj :回调对象 */ protected static function getPrivateMethod($strMethodName) { $objReflectClass = new ReflectionClass(self::CLASS_NAME); $method = $objReflectClass->getMethod($strMethodName); $method->setAccessible(true); return $method; } </code>
[Bitte geben Sie beim Nachdruck an: Aufruf der privaten Methode im phpunit-Einzeltest | Zuverlässiger Cui Xiaoyan]
Das Obige stellt die Verarbeitung des Aufrufs privater Methoden im PHPUnit-Einzeltest vor, einschließlich Anforderung, Codeanalyse und Ausnahme. Ich hoffe, es wird für Freunde hilfreich sein, die sich für PHP-Tutorials interessieren.