* @link https://www.oxidmodule.com */ declare(strict_types=1); namespace D3\DIContainerHandler\tests\autoload; use D3\TestingTools\Development\CanAccessRestricted; use Exception; use PHPUnit\Framework\TestCase; use Symfony\Component\DependencyInjection\ContainerBuilder; class functions_oxDICTest extends TestCase { use CanAccessRestricted; /** * @test * @throws Exception */ public function d3GetOxidDICTest(): void { $this->assertInstanceOf( ContainerBuilder::class, d3GetOxidDIC() ); } }