File: /home/lesanew/anestetues2/web/app/themes/anes-tetues/vendor/roots/acorn/tests/Test/TestCase.php
<?php
namespace Roots\Acorn\Tests\Test;
use Mockery\Adapter\Phpunit\MockeryTestCase;
use Roots\Acorn\Tests\Test\Concerns\SupportsGlobalStubs;
use Roots\Acorn\Tests\Test\Concerns\SupportsScopedFixtures;
use Roots\Acorn\Tests\Test\Concerns\SupportsWordPressStubs;
class TestCase extends MockeryTestCase
{
use SupportsGlobalStubs;
use SupportsScopedFixtures;
use SupportsWordPressStubs;
protected function setUp(): void
{
$this->clearStubs();
$this->wordPressStubs();
parent::setUp();
}
}