2020-07-01 12:23:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
2024-04-14 13:48:14 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2020-07-01 12:23:40 +00:00
|
|
|
namespace Benzine\Tests;
|
|
|
|
|
|
2020-09-01 03:15:02 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
|
|
abstract class AbstractTestCase extends TestCase
|
2020-07-01 12:23:40 +00:00
|
|
|
{
|
|
|
|
|
use Traits\OverrideProtectionTrait;
|
|
|
|
|
use Traits\ArrayEquitabilityTrait;
|
|
|
|
|
}
|