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. :)
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.
class MyClassTest extends \SergeyMakinen\Tests\TestCase
{
//
}