2018-10-04 20:10:43 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Tests;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
2020-02-26 14:26:07 +11:00
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
2018-10-04 20:10:43 +03:00
|
|
|
|
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
|
|
|
{
|
|
|
|
|
use CreatesApplication;
|
2020-02-26 14:26:07 +11:00
|
|
|
|
2018-10-04 20:10:43 +03:00
|
|
|
}
|