2FAuth/tests/TestCase.php

19 lines
335 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace Tests;
2019-05-29 11:19:49 +02:00
use Illuminate\Support\Facades\Artisan;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2019-05-20 07:37:41 +02:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
2019-05-29 11:19:49 +02:00
2019-06-06 13:40:06 +02:00
protected function setUp(): void
2019-05-29 11:19:49 +02:00
{
parent::setUp();
}
2021-11-14 01:52:46 +01:00
2019-05-20 07:37:41 +02:00
}