1
0
mirror of https://github.com/Bubka/2FAuth.git synced 2025-02-19 20:01:24 +01:00
2FAuth/tests/TestCase.php

16 lines
239 B
PHP
Raw Permalink 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
}