<?php declare(strict_types=1); /* * This file is part of [package name]. * * (c) John Doe * * @license LGPL-3.0-or-later */ namespace vonRotenberg\RealEstateListingBundle\Tests; use vonRotenberg\RealEstateListingBundle\VonrotenbergRealEstateListingBundle; use PHPUnit\Framework\TestCase; class ContaoSkeletonBundleTest extends TestCase { public function testCanBeInstantiated(): void { $bundle = new VonrotenbergRealEstateListingBundle(); $this->assertInstanceOf('Contao\SkeletonBundle\ContaoSkeletonBundle', $bundle); } }