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

ExampleTest.php 254B

1234567891011121314151617
  1. <?php
  2. class ExampleTest extends TestCase {
  3. /**
  4. * A basic functional test example.
  5. *
  6. * @return void
  7. */
  8. public function testBasicExample()
  9. {
  10. $response = $this->call('GET', '/');
  11. $this->assertEquals(200, $response->getStatusCode());
  12. }
  13. }