phore/tester

使用phpunit API的轻量级单元测试

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

This package is auto-updated.

Last update: 2024-09-18 14:18:29 UTC


README

使用phpunit API进行轻量级单元测试

重复测试

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