File tree 5 files changed +53
-0
lines changed
5 files changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ /vendor
2
+ composer.phar
3
+ composer.lock
4
+ tests /_output /*
Original file line number Diff line number Diff line change
1
+ preset : laravel
Original file line number Diff line number Diff line change 16
16
],
17
17
"minimum-stability" : " dev" ,
18
18
"require" : {},
19
+ "require-dev" : {
20
+ "phpunit/phpunit" : " ^8.0" ,
21
+ "orchestra/testbench" : " ~3.8.0|^4.0"
22
+ },
23
+ "autoload-dev" : {
24
+ "psr-4" : {
25
+ "Laravel\\ DataTables\\ Tests\\ " : " tests/"
26
+ }
27
+ },
19
28
"autoload" : {
20
29
"psr-4" : {
21
30
"Laravel\\ DataTables\\ " : " src/"
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit backupGlobals =" false"
3
+ backupStaticAttributes =" false"
4
+ bootstrap =" vendor/autoload.php"
5
+ colors =" true"
6
+ convertErrorsToExceptions =" true"
7
+ convertNoticesToExceptions =" true"
8
+ convertWarningsToExceptions =" true"
9
+ processIsolation =" false"
10
+ stopOnFailure =" false" >
11
+ <testsuites >
12
+ <testsuite name =" Package Test Suite" >
13
+ <directory >./tests/</directory >
14
+ </testsuite >
15
+ </testsuites >
16
+ <filter >
17
+ <whitelist >
18
+ <directory suffix =" .php" >app/</directory >
19
+ </whitelist >
20
+ </filter >
21
+ <php >
22
+ <env name =" APP_ENV" value =" testing" />
23
+ <env name =" CACHE_DRIVER" value =" array" />
24
+ <env name =" SESSION_DRIVER" value =" array" />
25
+ <env name =" QUEUE_DRIVER" value =" sync" />
26
+ <env name =" CACHE_DRIVER" value =" array" />
27
+ <env name =" DB_CONNECTION" value =" sqlite" />
28
+ <env name =" DB_DATABASE" value =" :memory" />
29
+ </php >
30
+ </phpunit >
Original file line number Diff line number Diff line change
1
+ <?php
2
+ namespace Laravel \DataTables \Tests ;
3
+
4
+ use Orchestra \Testbench \TestCase as Orchestra ;
5
+
6
+ abstract class TestCase extends Orchestra
7
+ {
8
+
9
+ }
You can’t perform that action at this time.
0 commit comments