Browse code

Initial commit

Benjamin Roth authored on18/03/2025 13:06:28
Showing1 changed files
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 WMFGO Cevisio 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
+}