jstewmc/test-case

在单元测试中访问私有属性

v2.0.0 2017-07-04 20:16 UTC

This package is auto-updated.

Last update: 2024-08-29 04:25:55 UTC


README

在单元测试中访问私有属性。

use Jstewmc\TestCase\TestCase;

class Test extends TestCase
{
    public function testFoo()
    {
        $class = new class { private $foo = 'bar'; };
        
        $this->assertEquals('bar', $this->getProperty('foo', $class));
        
        return;
    }    
}

许可证

MIT

作者

Jack Clayton

版本

2.0.0, 2017年7月4日

  • 将PHPUnit的主要版本从^5.4更新到^6.2

1.0.0, 2016年8月13日

  • 稳定版本

0.1.0, 2016年7月28日

  • 首次发布