jonnybarnes.uk/tests/TestCase.php

10 lines
163 B
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
2016-05-19 15:01:28 +01:00
{
use CreatesApplication;
2016-05-19 15:01:28 +01:00
}