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-10-15 20:51:40 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']);
    }
}