dtyrxmoj20617 2016-09-26 11:40
浏览 38
已采纳

如何使用phpunit测试变量是否存在于函数中

I am writing Unit-Tests for a Class looking like this:

class example {

    public function __construct($param1, $param2) {
        $this->param1 = $param1
        $this->param2 = $param2
    }
}

Is it possible to test if $this->param1 and $this->param2 exists after the constructor is executed? I already googled for this but didn't found a valid answer to this. I tried it with the Assertion contain, but this didn't work too.

  • 写回答

3条回答 默认 最新

  • dongshao5573 2016-09-26 11:52
    关注

    If you want to see whether properties have been assigned the specified values in the resulting object, use Reflection class. In your example, if you properties are public:

    public function testInitialParams()
    {
        $value1 = 'foo';
        $value2 = 'bar';
        $example = new Example($value1, $value2); // note that Example is using 'Standing CamelCase'
        $sut = new \ReflectionClass($example);
    
        $prop1 = $sut->getProperty('param1');
        $prop1->setAccessible(true); // Needs to be done to access protected and private properties
        $this->assertEquals($prop2->getValue($example), $value1, 'param1 got assigned the correct value');
    
        $prop2 = $sut->getProperty('param2');
        $prop2->setAccessible(true);
        $this->assertEquals($prop2->getValue($example), $value2, 'param2 got assigned the correct value');
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵