Files
opensem/tests/TestCase.php
Ludovic CANDELLIER baf8e13c25 Initial release
2020-03-22 21:30:03 +01:00

11 lines
163 B
PHP

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