firefly-iii/tests/TestCase.php
2017-02-05 19:51:58 +01:00

16 lines
210 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
/**
* Class TestCase
*
* @package Tests
*/
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}