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
- Host: GitHub
- URL: https://github.com/phore/phore-tester
- Owner: phore
- Created: 2020-03-21T10:24:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-06-10T13:55:20.000Z (about 1 year ago)
- Last Synced: 2025-09-21T12:36:45.130Z (9 months ago)
- Language: Shell
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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");
}
```