Browse code

Update

Benjamin Roth authored on26/07/2023 10:53:36
Showing1 changed files
... ...
@@ -3,11 +3,11 @@
3 3
 declare(strict_types=1);
4 4
 
5 5
 /*
6
- * This file is part of [package name].
6
+ * This file is part of memberfiles bundle.
7 7
  *
8
- * (c) John Doe
8
+ * (c) vonRotenberg
9 9
  *
10
- * @license LGPL-3.0-or-later
10
+ * @license commercial
11 11
  */
12 12
 
13 13
 namespace Contao\SkeletonBundle\Tests;
Browse code

Initial commit

Benjamin Roth authored on17/07/2023 11:30:34
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 Contao\SkeletonBundle\Tests;
14
+
15
+use Contao\SkeletonBundle\VonrotenbergMemberfilesBundle;
16
+use PHPUnit\Framework\TestCase;
17
+
18
+class ContaoSkeletonBundleTest extends TestCase
19
+{
20
+    public function testCanBeInstantiated(): void
21
+    {
22
+        $bundle = new VonrotenbergMemberfilesBundle();
23
+
24
+        $this->assertInstanceOf('Contao\SkeletonBundle\VonrotenbergMemberfilesBundle', $bundle);
25
+    }
26
+}