mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 09:31:51 +01:00
24 lines
541 B
PHP
24 lines
541 B
PHP
<?php
|
|
|
|
/**
|
|
* (c) Meritoo.pl, http://www.meritoo.pl
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Meritoo\Common\Test\Base;
|
|
|
|
use Meritoo\Common\Traits\Test\Base\BaseTestCaseTrait;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Base test case with common methods and data providers
|
|
*
|
|
* @author Meritoo <github@meritoo.pl>
|
|
* @copyright Meritoo <http://www.meritoo.pl>
|
|
*/
|
|
abstract class BaseTestCase extends TestCase
|
|
{
|
|
use BaseTestCaseTrait;
|
|
}
|