Browse code

Initial commit

Benjamin Roth authored on26/02/2024 17:53:24
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 [package name].
7
+ *
8
+ * (c) John Doe
9
+ *
10
+ * @license LGPL-3.0-or-later
11
+ */
12
+
13
+namespace vonRotenberg\RealEstateListingBundle\Tests;
14
+
15
+use vonRotenberg\RealEstateListingBundle\VonrotenbergRealEstateListingBundle;
16
+use PHPUnit\Framework\TestCase;
17
+
18
+class ContaoSkeletonBundleTest extends TestCase
19
+{
20
+    public function testCanBeInstantiated(): void
21
+    {
22
+        $bundle = new VonrotenbergRealEstateListingBundle();
23
+
24
+        $this->assertInstanceOf('Contao\SkeletonBundle\ContaoSkeletonBundle', $bundle);
25
+    }
26
+}