photo/tests/TestCase.php

11 lines
163 B
PHP
Raw Normal View History

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