<?php
declare(strict_types=1);
/*
* This file is part of memberfiles bundle.
*
* (c) vonRotenberg
*
* @license commercial
*/
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);
}
}