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