firefly-iii/tests/TestCase.php

15 lines
209 B
PHP
Raw Normal View History

2015-07-02 02:44:56 -05:00
<?php
2016-05-20 01:57:45 -05:00
2017-02-05 08:42:00 -06:00
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
2016-11-19 08:55:49 -06:00
2016-10-09 00:58:27 -05:00
/**
* Class TestCase
2017-02-05 08:42:00 -06:00
*
* @package Tests
2016-10-09 00:58:27 -05:00
*/
2017-02-05 08:42:00 -06:00
abstract class TestCase extends BaseTestCase
2015-07-02 02:44:56 -05:00
{
2017-02-05 08:42:00 -06:00
use CreatesApplication;
}