aboutsummaryrefslogtreecommitdiff
path: root/tests/TestCase.php
diff options
context:
space:
mode:
authorCamil Staps2016-01-04 15:12:59 +0100
committerCamil Staps2016-01-04 15:12:59 +0100
commit9c4afbed2310aa0c4679d11b9f568c234d202554 (patch)
tree65e8956b671239f2ec38789ce59a4cea9af0ebc2 /tests/TestCase.php
Initial commit
Diffstat (limited to 'tests/TestCase.php')
-rw-r--r--tests/TestCase.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php
new file mode 100644
index 0000000..651d9cb
--- /dev/null
+++ b/tests/TestCase.php
@@ -0,0 +1,14 @@
+<?php
+
+class TestCase extends Laravel\Lumen\Testing\TestCase
+{
+ /**
+ * Creates the application.
+ *
+ * @return \Laravel\Lumen\Application
+ */
+ public function createApplication()
+ {
+ return require __DIR__.'/../bootstrap/app.php';
+ }
+}