• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

对于PHPUnit测试私有属性和方法的功能分析

php 搞代码 4年前 (2022-01-22) 13次浏览 已收录 0个评论

这篇文章主要介绍了PHPUnit测试私有属性和方法功能,结合实例形式较为详细的分析了使用PHPUnit针对私有属性和方法进行测试的相关操作技巧与注意事项,需要的朋友可以参考下

本文实例讲述了PHPUnit测试私有属性和方法功能。分享给大家供大家参考,具体如下:

一、测试类中的私有方法:

class Sample{  private $a = 0;  private function run()  {    echo $a;  }}

上面只是简单的写了一个类包含,一个私有变量和一个私有方法。对于protected和private方法,由于无法像是用public方法一样直接调用,所以在使用phpunit进行单测的时候,多有不便,特别是当一个类中,对外只提供少量接口,内部使用了大量private方法的情况。

对于protected方法,建议使用继承的方式进行测试,在此就不再赘述。而对于private方法的测试,建议使用php的反射机制来进行。话不多说,上代码:

class testSample(){    $method = new ReflectionMethod('Sample', 'run');    $method->setAccessible(true); //将run方法从private变成类似于public的权限    $method->invoke(new Sample()); //调用run方法}

如果run方法是静态的,如:

private static function run(){  ec<span>!本文来源gaodai#ma#com搞*!代#%^码网5</span><pre>搞gaodaima代码

ho 'run is a private static function';}

那么invoke函数还可以这么写:

$method->invoke(null); //只有静态方法可以不必传类的实例化

如果run还需要传参,比如:

private function run($x, $y){  return $x + $y;}

那么,测试代码可以改为:

$method->invokeArgs(new Sample(), array(1, 2));//array中依次写入要传的参数。执行结果返回3

【注意】:利用反射的方法测试私有方法虽好,但setAccessible函数是php5.3.2版本以后才支持的(>=5.3.2)

二、私有属性的get/set

说完了私有方法,再来看看私有属性,依旧拿Sample类作为例子,想要获取或设置Sample类中的私有属性$a的值可以用如下方法:

public function testPrivateProperty(){  $reflectedClass = new ReflectionClass('Sample');  $reflectedProperty = $reflectedClass->getProperty('a');  $reflectedProperty->setAccessible(true);  $reflectedProperty->getValue(); //获取$a的值  $reflectedProperty->setValue(123); //给$a赋值:$a = 123;}

上述方法对静态属性依然有效。

到此,是不是瞬间感觉测试私有方法或属性变得很容易了。

附:PHPunit 测试私有方法(英文原文)

This article is part of a series on testing untestable code:

  • Testing private methods

  • Testing code that uses singletons

  • Stubbing static methods

  • Stubbing hard-coded dependencies

No, not those privates. If you need help with those, this book might help.

One question I get over and over again when talking about Unit Testing is this:

"How do I test the private attributes and methods of my objects?"

Lets assume we have a class Foo:

<?phpclass Foo{  private $bar = 'baz';  public function doSomething()  {    return $this->bar = $this->doSomethingPrivate();  }  private function doSomethingPrivate()  {    return 'blah';  }}?>

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:对于PHPUnit测试私有属性和方法的功能分析

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址