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

16 行
417 B

  1. <?php
  2. class HelpersTest extends PHPUnit_Framework_TestCase {
  3. public function testLowercaseHostname() {
  4. $url = 'http://Example.com/';
  5. $result = normalize_url($url);
  6. $this->assertEquals('http://example.com/', $result);
  7. }
  8. public function testAddsSlashToBareDomain() {
  9. $url = 'http://example.com';
  10. $result = normalize_url($url);
  11. $this->assertEquals('http://example.com/', $result);
  12. }
  13. }