123456789101112131415161718192021 |
- <?php
- namespace Tests;
- use App\Entities\TestInfo;
- use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
- abstract class TestCase extends BaseTestCase
- {
- use CreatesApplication;
- protected $test_num=0;
- protected $test_ok_num=0;
- protected $test_no_num=0;
- function __construct()
- {
- parent::__construct();
- }
- }
|