Files
c-cms-legacy/tests/TestCase.php
Mathieu Lagace 771ed55f53 Initial commit
2018-06-27 19:54:27 -04:00

11 lines
163 B
PHP

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