| 1 | <?php |
||
| 5 | abstract class TestCase extends \Illuminate\Foundation\Testing\TestCase |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The base URL to use while testing the application. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | protected $baseUrl = 'http://localhost'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Creates the application. |
||
| 16 | * |
||
| 17 | * @return \Illuminate\Foundation\Application |
||
| 18 | */ |
||
| 19 | public function createApplication() |
||
| 29 | } |
||
| 30 |