sergeymakinen / tests
Common PHPUnit tests stuff
Installs: 10 837
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
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 { // }