sergeymakinen / tests
This package is abandoned and no longer maintained.
No replacement package was suggested.
Common PHPUnit tests stuff
v1.3.1
2018-02-12 18:13 UTC
Requires
- php: ^5.4 || ^7.0
- phpunit/phpunit: ^4.8.25 || ^5.4.3 || ^6.0.5 || ^7.0
- sebastian/comparator: ^1.2.3 || ^2.0
- symfony/var-dumper: ^2.8 || ^3.0 || ^4.0
README
Common tests stuff for PHPUnit tests. Version 1.3 or higher is compatible with PHPUnit:
- 4.8.25 or higher
- 5.4.3 or higher
- 6.0.5 or higher
- 7.0.0 or higher
I use it in my library tests but you're also free to use. :)
Installation
The preferred way to install this extension is through composer.
Either run
composer require --dev "sergeymakinen/tests:^1.0"
or add
"sergeymakinen/tests": "^1.0"
to the require-dev section of your composer.json file.
Usage
class MyClassTest extends \SergeyMakinen\Tests\TestCase { // }