Files
luos/tests/TestCase.php
davidcallizaya 21a0b9508e HOR-3626
Moved laravel boot after ProcessMaker loads its evironment constants. (PATH_DATA for shared folder)
2017-08-10 21:35:15 -04:00

10 lines
162 B
PHP

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