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 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏