XBackBone/tests/TestCase.php
2020-10-01 18:08:35 +02:00

18 lines
341 B
PHP

<?php
namespace Tests;
use PHPUnit\Framework\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use WithApplication;
protected function setUp()
{
parent::setUp();
$_SESSION = []; // ugly workaround to the the session superglobal between tests
$this->createApplication();
}
}