定制 fkupper/private-sniffer-module 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

fkupper/private-sniffer-module

最新稳定版本:0.1.1

Composer 安装命令:

composer require fkupper/private-sniffer-module

包简介

Simple module that enables sniffing into private defined elements of an object while running unit tests with Codeception.

README 文档

README

Total Downloads Monthly Downloads

Simple Codeception module to check private elements of objects.

Installation

Can be installed using composer:

composer require --dev fkupper/private-sniffer-module

Usage

Simple include the module on your unit suite config YML file:

modules:
   enabled: [PrivateSniffer]

On your unit tests you can now inspect and test private attributes and methods:

class Foo
{
    private $someInt = 1;

    private sum(int $a, int $b): int
    {
        return $a + $b;
    }
}

class TestFoo extends \Codeception\Test\Unit
{
    /**
     * @var \UnitTester
     */
    protected $tester;

    // tests
    public function testSum()
    {
        $foo = new Foo();

        // get the value of the private attribute $someInt
        $someInt = $this->tester->getPrivatePropertyValue($foo, 'someInt');
        $this->assertEquals(1, $someInt);

        // get a closure of the private method sum
        $sum = $this->tester->getPrivateMethod($foo, 'sum');
        $this->assertEquals(2 + 3, $sum(2, 3));
    }
}

Is this a solution to test bad/not testable code?

Of course not. This is meant to be used when critical and sentive part of your code must be tested and is not possible for any reason.

Best practice still is to develop with unit testing in mind and refactor over time whatever you have that cannot be tested properly.

统计信息

  • 总下载量: 178.34k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-07-11