Projeto

Geral

Perfil

Estatísticas
| Branch: | Revisão:

expressolivretools / tests / TestCase.php @ 3e379cec

Histórico | Ver | Anotar | Baixar (314 Bytes)

1
<?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
}