LoginTest.php 209 B

123456789101112131415
  1. <?php
  2. namespace tests;
  3. use PHPUnit\Framework\TestCase;
  4. class LoginTest extends TestCase
  5. {
  6. public function testBasicExample()
  7. {
  8. $x = 100;
  9. $this->visit('/')->see('ThinkPHP');
  10. }
  11. }