Common PHPUnit tests stuff

v1.3.1 2018-02-12 18:13 UTC

This package is auto-updated.

Last update: 2024-03-10 06:46:07 UTC


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. :)

Code Quality Build Status Code Coverage SensioLabsInsight

Packagist Version Total Downloads Software License

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
{
    //
}