jeyroik/extas-snuffbox-conditions

There is no license information available for the latest version (0.2.1) of this package.

Conditions snuffbox fox Extas

0.2.1 2021-03-15 12:23 UTC

This package is auto-updated.

Last update: 2024-04-15 19:49:34 UTC


README

tests codecov.io PHPStan Enabled 68747470733a2f2f6170692e636f6465636c696d6174652e636f6d2f76312f6261646765732f38613164336333623066353132653531396533642f6d61696e7461696e6162696c697479

Описание

Предоставляет инструмент для удобного управления установкой и удаления условий для использования в тестах.

Использование

use extas\components\conditions\TSnuffConditions;

class Test extends TestCase
{
    use TSnuffConditions;

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

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