Files
firefly-iii/tests/TestCase.php

16 lines
210 B
PHP
Raw Normal View History

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