2016-05-19 15:01:28 +01:00
|
|
|
<?php
|
|
|
|
|
2017-02-18 12:27:21 +00:00
|
|
|
namespace Tests;
|
2016-05-19 15:01:28 +01:00
|
|
|
|
2017-02-18 12:27:21 +00:00
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
2016-05-19 15:01:28 +01:00
|
|
|
|
2017-02-18 12:27:21 +00:00
|
|
|
abstract class TestCase extends BaseTestCase
|
|
|
|
{
|
|
|
|
use CreatesApplication;
|
2016-05-19 15:01:28 +01:00
|
|
|
}
|