Files
faveo/tests/TestCase.php
Manish Verma b11a4f6649 v1.10.5 updates
update

Fixes testclasses

Apply fixes from StyleCI

Update .travis.yml

Revert "Update .travis.yml"

This reverts commit 462dd1cb44402f6cbcb516ff17e48d1d562e98e2.
2019-04-10 15:25:24 +05:30

28 lines
546 B
PHP

<?php
namespace Tests;
class TestCase extends \Illuminate\Foundation\Testing\TestCase
{
/**
* The base URL to use while testing the application.
*
* @var string
*/
protected $baseUrl = 'http://localhost';
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
return $app;
}
}