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 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题