phore/tester

Lightweight unit testing with phpunit api

Installs: 1 191

Dependents: 42

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Language:Shell

v1.0 2020-05-07 13:59 UTC

This package is auto-updated.

Last update: 2024-04-18 11:55:14 UTC


README

Lightweight unit testing using phpunit like api

Repeat Tests

 #[ApplyFixture(path: __DIR__ . "/cases")]
public function testSchemaCases($test)
{
    $schemaIn = require($test. ".in.php");
    $compareFile = file_get_contents($test. ".exp.sql");
}