mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-13 13:57:34 -04:00
16 lines
291 B
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();
|
|
}
|
|
}
|