An open API service indexing awesome lists of open source software.

https://github.com/phore/phore-tester

Lightweight unit testing using phpunit like api
https://github.com/phore/phore-tester

Last synced: 5 months ago
JSON representation

Lightweight unit testing using phpunit like api

Awesome Lists containing this project

README

          

# phore-tester
Lightweight unit testing using phpunit like api

## Repeat Tests

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