/**
  * Setup the App
  */
 protected function setUp()
 {
     parent::setUp();
     putenv('APP_ENV=testing');
     $this->app = (require __DIR__ . '/../../../bootstrap/app.php');
     /** @var Kernel $kernel */
     $this->kernel = $this->app->make(Kernel::class);
     $this->kernel->bootstrap();
     $this->kernel->call('migrate');
     Schema::create('testing_table', function (Blueprint $table) {
         $table->string('id');
         $table->string('first');
         $table->string('second');
     });
 }