Add test for the BaseTestCaseTrait trait

This commit is contained in:
Meritoo
2019-09-06 11:58:40 +02:00
parent 16cdd1cd60
commit ded1a04900
2 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?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.
*/
declare(strict_types=1);
namespace Meritoo\Test\Common\Traits\Test\Base\BaseTestCaseTrait;
use Meritoo\Common\Traits\Test\Base\BaseTestCaseTrait;
/**
* @internal
* @coversNothing
*/
class SimpleTestCase
{
use BaseTestCaseTrait;
}