TestCase.php 350 B

123456789101112131415161718192021
  1. <?php
  2. namespace Tests;
  3. use App\Entities\TestInfo;
  4. use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
  5. abstract class TestCase extends BaseTestCase
  6. {
  7. use CreatesApplication;
  8. protected $test_num=0;
  9. protected $test_ok_num=0;
  10. protected $test_no_num=0;
  11. function __construct()
  12. {
  13. parent::__construct();
  14. }
  15. }