jeyroik/extas-snuffbox-conditions

此包最新版本(0.2.1)没有可用的许可证信息。

条件烟盒狐狸Extas

0.2.1 2021-03-15 12:23 UTC

This package is auto-updated.

Last update: 2024-09-15 20:40:54 UTC


README

tests codecov.io PHPStan Enabled

描述

提供用于方便管理用于测试的条件安装和卸载的工具。

使用

use extas\components\conditions\TSnuffConditions;

class Test extends TestCase
{
    use TSnuffConditions;

    protected function tearDown()
    {
        $this->deleteSnuffConditions();
    }

    public function testSomething()
    {
        $this->createSnuffConditions(['equal', 'not_equal']);
    }
}