コード例 #1
0
 public function testNormalizePageTitle()
 {
     $site = new MediaWikiSite();
     $site->setGlobalId('enwiki');
     //NOTE: this does not actually call out to the enwiki site to perform the normalization,
     //      but uses a local Title object to do so. This is hardcoded on SiteLink::normalizePageTitle
     //      for the case that MW_PHPUNIT_TEST is set.
     $this->assertEquals('Foo', $site->normalizePageName(' foo '));
 }