Browse code

Initial Commit

Benjamin Roth authored on26/11/2018 15:55:30
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,24 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of [package name].
5
+ *
6
+ * (c) John Doe
7
+ *
8
+ * @license LGPL-3.0-or-later
9
+ */
10
+
11
+namespace EsalesMedia\SinglereisenBundle\Tests;
12
+
13
+use EsalesMedia\SinglereisenBundle\EsalesMediaSinglereisenBundle;
14
+use PHPUnit\Framework\TestCase;
15
+
16
+class EsalesMediaSinglereisenBundleTest extends TestCase
17
+{
18
+    public function testCanBeInstantiated()
19
+    {
20
+        $bundle = new EsalesMediaSinglereisenBundle();
21
+
22
+        $this->assertInstanceOf('EsalesMedia\SinglereisenBundle\EsalesMediaSinglereisenBundle', $bundle);
23
+    }
24
+}