expressolivretools / tests / TestCase.php @ master
Histórico | Ver | Anotar | Baixar (314 Bytes)
1 | 3e379cec | Alexandre Correia | <?php
|
---|---|---|---|
2 | |||
3 | use Laravel\Lumen\Testing\TestCase as BaseTestCase; |
||
4 | |||
5 | abstract class TestCase extends BaseTestCase |
||
6 | { |
||
7 | /**
|
||
8 | * Creates the application.
|
||
9 | *
|
||
10 | * @return \Laravel\Lumen\Application
|
||
11 | */
|
||
12 | public function createApplication() |
||
13 | { |
||
14 | return require __DIR__.'/../bootstrap/app.php'; |
||
15 | } |
||
16 | } |