您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ExampleTest.php 225B

123456789101112131415
  1. <?php
  2. class ExampleTest extends TestCase
  3. {
  4. /**
  5. * A basic test example.
  6. *
  7. * @return void
  8. */
  9. public function testBasicExample()
  10. {
  11. $this->visit('/')
  12. ->see('Lumen.');
  13. }
  14. }