firefly-iii/tests/TestCase.php
2017-02-05 15:42:00 +01:00

15 lines
209 B
PHP

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