<?php declare(strict_types=1); /* * This file is part of modal bundle for Contao. * * (c) Benjamin Roth * * @license LGPL-3.0-or-later */ namespace vonRotenberg\ModalBundle\Tests; use vonRotenberg\ModalBundle\VonrotenbergModalBundle; use PHPUnit\Framework\TestCase; class VonrotenbergModalBundleTest extends TestCase { public function testCanBeInstantiated(): void { $bundle = new VonrotenbergModalBundle(); $this->assertInstanceOf('vonRotenberg\ModalBundle\VonrotenbergModalBundle', $bundle); } }