<?php declare(strict_types=1); /* * This file is part of vonRotenberg Coretools Bundle. * * (c) vonRotenberg * * @license proprietary */ namespace Contao\SkeletonBundle\Tests; use Contao\SkeletonBundle\VonrotenbergCoretoolsBundle; use PHPUnit\Framework\TestCase; class ContaoSkeletonBundleTest extends TestCase { public function testCanBeInstantiated(): void { $bundle = new VonrotenbergCoretoolsBundle(); $this->assertInstanceOf('Contao\SkeletonBundle\VonrotenbergCoretoolsBundle', $bundle); } }