photo/tests/TestCase.php

11 lines
163 B
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
2019-11-08 12:08:34 +00:00
namespace Tests;
2016-06-20 13:35:59 +00:00
2019-11-08 12:08:34 +00:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
2016-06-20 13:35:59 +00:00
2019-11-08 12:08:34 +00:00
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2016-06-20 13:35:59 +00:00
}