jonnybarnes.uk/tests/TestCase.php

11 lines
163 B
PHP
Raw Normal View History

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