Browse code

Initial commit

Benjamin Roth authored on09/01/2023 22:28:04
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 modal bundle for Contao.
7
+ *
8
+ * (c) Benjamin Roth
9
+ *
10
+ * @license LGPL-3.0-or-later
11
+ */
12
+
13
+namespace vonRotenberg\ModalBundle\Tests;
14
+
15
+use vonRotenberg\ModalBundle\VonrotenbergModalBundle;
16
+use PHPUnit\Framework\TestCase;
17
+
18
+class VonrotenbergModalBundleTest extends TestCase
19
+{
20
+    public function testCanBeInstantiated(): void
21
+    {
22
+        $bundle = new VonrotenbergModalBundle();
23
+
24
+        $this->assertInstanceOf('vonRotenberg\ModalBundle\VonrotenbergModalBundle', $bundle);
25
+    }
26
+}