akaunting/tests/TestCase.php

11 lines
163 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
2018-09-29 17:28:34 +03:00
use CreatesApplication;
2017-09-14 22:21:00 +03:00
}