Completed
Push — master ( bccc4f...6cada5 )
by Nicolas
04:30
created

BaseTestCase::getPackageProviders()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
1
<?php namespace Nwidart\Modules\Tests;
2
3
use Nwidart\Modules\LaravelModulesServiceProvider;
4
use Orchestra\Testbench\TestCase as OrchestraTestCase;
5
6
abstract class BaseTestCase extends OrchestraTestCase
7
{
8
    protected function getPackageProviders($app)
9
    {
10
        return [
11
            LaravelModulesServiceProvider::class,
12
        ];
13
    }
14
15
    /**
16
     * Set up the environment.
17
     *
18
     * @param \Illuminate\Foundation\Application $app
19
     */
20
    protected function getEnvironmentSetUp($app)
21
    {
22
    }
23
}
24