Files
opensourcepos/tests/Support/PluginTestCase.php

16 lines
291 B
PHP

<?php
namespace Tests\Support;
use App\Libraries\Plugins\PluginManager;
use CodeIgniter\Test\CIUnitTestCase;
abstract class PluginTestCase extends CIUnitTestCase
{
protected function setUp(): void
{
parent::setUp();
PluginManager::registerAllNamespaces();
}
}