2FAuth/tests/TestCase.php

16 lines
239 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2019-05-29 11:19:49 +02:00
2022-11-22 15:15:52 +01:00
protected function setUp() : void
2019-05-29 11:19:49 +02:00
{
parent::setUp();
}
2019-05-20 07:37:41 +02:00
}