eaad9423dd
Now the code is following most of PSR Various changes from various branches (some testing will be required) Fixed various issues
16 lines
231 B
PHP
16 lines
231 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use PHPUnit\Framework\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use CreatesApplication;
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->createApplication();
|
|
}
|
|
}
|