Skip to content

Commit

Permalink
add trait
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 5, 2016
1 parent b64d1e3 commit ba5bde7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 21 deletions.
22 changes: 22 additions & 0 deletions tests/CreatesApplication.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

namespace Tests;

use Illuminate\Contracts\Console\Kernel;

trait CreatesApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';

$app->make(Kernel::class)->bootstrap();

return $app;
}
}
22 changes: 1 addition & 21 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,9 @@

namespace Tests;

use Illuminate\Contracts\Console\Kernel;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;

abstract class TestCase extends BaseTestCase
{
/**
* 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(Kernel::class)->bootstrap();

return $app;
}
use CreatesApplication;
}

0 comments on commit ba5bde7

Please sign in to comment.