for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Nwidart\Modules\Tests;
use Nwidart\Modules\LaravelModulesServiceProvider;
use Orchestra\Testbench\TestCase as OrchestraTestCase;
abstract class BaseTestCase extends OrchestraTestCase
{
protected function getPackageProviders($app)
return [
LaravelModulesServiceProvider::class,
];
}
/**
* Set up the environment.
*
* @param \Illuminate\Foundation\Application $app
*/
protected function getEnvironmentSetUp($app)