1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,26 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+declare(strict_types=1); |
|
4 |
+ |
|
5 |
+/* |
|
6 |
+ * This file is part of vonRotenberg Coretools Bundle. |
|
7 |
+ * |
|
8 |
+ * (c) vonRotenberg |
|
9 |
+ * |
|
10 |
+ * @license proprietary |
|
11 |
+ */ |
|
12 |
+ |
|
13 |
+namespace Contao\SkeletonBundle\Tests; |
|
14 |
+ |
|
15 |
+use Contao\SkeletonBundle\VonrotenbergCoretoolsBundle; |
|
16 |
+use PHPUnit\Framework\TestCase; |
|
17 |
+ |
|
18 |
+class ContaoSkeletonBundleTest extends TestCase |
|
19 |
+{ |
|
20 |
+ public function testCanBeInstantiated(): void |
|
21 |
+ { |
|
22 |
+ $bundle = new VonrotenbergCoretoolsBundle(); |
|
23 |
+ |
|
24 |
+ $this->assertInstanceOf('Contao\SkeletonBundle\VonrotenbergCoretoolsBundle', $bundle); |
|
25 |
+ } |
|
26 |
+} |