summaryrefslogtreecommitdiff
path: root/tests/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestCase.php')
-rw-r--r--tests/TestCase.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php
new file mode 100644
index 0000000..0965940
--- /dev/null
+++ b/tests/TestCase.php
@@ -0,0 +1,16 @@
+<?php
+
+namespace Lightscale\LaralightTables\Tests;
+
+use Orchestra\Testbench\TestCase as Orchestra;
+use Lightscale\LaralightTables\ServiceProvider;
+
+class TestCase extends Orchestra
+{
+ protected function getPackageProviders($app)
+ {
+ return [
+ ServiceProvider::class,
+ ];
+ }
+}