Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/merkushin/easytest
The easy test
https://github.com/merkushin/easytest
php unittest
Last synced: 14 days ago
JSON representation
The easy test
- Host: GitHub
- URL: https://github.com/merkushin/easytest
- Owner: merkushin
- License: other
- Created: 2022-08-10T13:43:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-06T21:01:31.000Z (over 1 year ago)
- Last Synced: 2024-12-25T11:15:41.950Z (23 days ago)
- Topics: php, unittest
- Language: PHP
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP: The Easy Test
The experimental tool for writing tests easily.
It uses PHP attributes for simpler organising and running tests.
Current implementation is extremely naive and allows writing test using functions.
Run tests in `./tests` directory with `./vendor/autoload.php` bootstrap script:
```sh
./vendor/bin/easytest ./tests ./vendor/autoload.php
```Tests exmple:
```php