XF_Index/tests/TestCase.php

16 lines
328 B
PHP
Raw Normal View History

2023-05-01 19:17:09 +08:00
<?php
2023-05-02 18:05:49 +08:00
/*
* Copyright © 2016 - 2023 筱锋xiao_lfeng. All Rights Reserved.
* 开发开源遵循 MIT 许可,若需商用请联系开发者
* https://www.x-lf.com/
*/
2023-06-10 14:21:40 +08:00
namespace Tests;
2023-05-02 18:05:49 +08:00
2023-06-10 14:21:40 +08:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}