本文整理汇总了PHP中MediaWikiLangTestCase类的典型用法代码示例。如果您正苦于以下问题:PHP MediaWikiLangTestCase类的具体用法?PHP MediaWikiLangTestCase怎么用?PHP MediaWikiLangTestCase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了MediaWikiLangTestCase类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
protected function tearDown()
{
global $wgHooks;
$wgHooks['GetPreferences'] = $this->mOldGetPreferencesHooks;
$this->mOldGetPreferencesHooks = false;
parent::tearDown();
}
示例2: setUp
public function setUp()
{
parent::setUp();
self::$notifyCallCounter = 0;
self::$mockRecentChange = self::getMock('RecentChange');
$this->setContentLang('qqx');
}
示例3: setUp
protected function setUp()
{
parent::setUp();
$dbw = wfGetDB(DB_MASTER);
$dbw->replace('interwiki', ['iw_prefix'], ['iw_prefix' => 'linksupdatetest', 'iw_url' => 'http://testing.com/wiki/$1', 'iw_api' => 'http://testing.com/w/api.php', 'iw_local' => 0, 'iw_trans' => 0, 'iw_wikiid' => 'linksupdatetest']);
$this->setMwGlobals('wgRCWatchCategoryMembership', true);
}
示例4: setUp
protected function setUp()
{
parent::setUp();
// Avoid 'GetHumanTimestamp' hook and others
$this->setMwGlobals('wgHooks', array());
RequestContext::getMain()->setLanguage(Language::factory('en'));
}
示例5: setUp
protected function setUp()
{
parent::setUp();
$this->initMessagesHref();
$this->skin = new SkinTemplate();
$this->skin->getContext()->setLanguage(Language::factory('en'));
}
示例6: setUp
protected function setUp()
{
parent::setUp();
if (!extension_loaded('intl')) {
$this->markTestSkipped('These tests require intl extension');
}
}
示例7: setUp
protected function setUp()
{
parent::setUp();
$langObj = Language::factory('en');
$localZone = 'UTC';
$localOffset = date('Z') / 60;
$this->setMwGlobals(array('wgMemc' => new EmptyBagOStuff(), 'wgContLang' => $langObj, 'wgLang' => $langObj, 'wgLocaltimezone' => $localZone, 'wgLocalTZoffset' => $localOffset, 'wgNamespaceProtection' => array(NS_MEDIAWIKI => 'editinterface')));
$this->userName = 'Useruser';
$this->altUserName = 'Altuseruser';
date_default_timezone_set($localZone);
$this->title = Title::makeTitle(NS_MAIN, "Main Page");
if (!isset($this->userUser) || !$this->userUser instanceof User) {
$this->userUser = User::newFromName($this->userName);
if (!$this->userUser->getID()) {
$this->userUser = User::createNew($this->userName, array("email" => "test@example.com", "real_name" => "Test User"));
$this->userUser->load();
}
$this->altUser = User::newFromName($this->altUserName);
if (!$this->altUser->getID()) {
$this->altUser = User::createNew($this->altUserName, array("email" => "alttest@example.com", "real_name" => "Test User Alt"));
$this->altUser->load();
}
$this->anonUser = User::newFromId(0);
$this->user = $this->userUser;
}
}
示例8: setUp
function setUp()
{
global $wgDefaultUserOptions;
parent::setUp();
//ensure the correct default gender
$wgDefaultUserOptions['gender'] = 'unknown';
}
示例9: tearDown
function tearDown()
{
global $wgMemc;
unset($wgMemc);
unset($this->lc);
unset($this->lang);
parent::tearDown();
}
示例10: setUp
public function setUp()
{
parent::setUp();
$conf = new SiteConfiguration();
$conf->settings = array('wgServer' => array('enwiki' => 'http://en.example.org', 'ruwiki' => '//ru.example.org'), 'wgArticlePath' => array('enwiki' => '/w/$1', 'ruwiki' => '/wiki/$1'));
$conf->suffixes = array('wiki');
$this->setMwGlobals(array('wgConf' => $conf));
}
示例11: tearDown
public function tearDown()
{
global $wgContLang, $wgLang, $wgLanguageCode;
$wgLang = self::$oldLang;
$wgContLang = self::$oldContLang;
$wgLanguageCode = $wgContLang->getCode();
self::$oldContLang = self::$oldLang = null;
}
示例12: setUp
public function setUp()
{
parent::setUp();
$user = User::newFromName('UserThatExists');
if (!$user->getId()) {
$user->addToDatabase();
}
}
示例13: teardown
public function teardown()
{
global $wgHooks;
// restore hooks that force custom rendering
if ($this->savedContentGetParserOutput !== null) {
$wgHooks['ContentGetParserOutput'] = $this->savedContentGetParserOutput;
}
parent::teardown();
}
示例14: tearDown
protected function tearDown()
{
global $wgContLang;
parent::tearDown();
MWNamespace::getCanonicalNamespaces(true);
# reset namespace cache
$wgContLang->resetNamespaces();
# reset namespace cache
}
示例15: tearDown
public function tearDown()
{
global $wgHooks;
if ($this->mOldGetPreferencesHooks !== false) {
$wgHooks['GetPreferences'] = $this->mOldGetPreferencesHooks;
$this->mOldGetPreferencesHooks = false;
}
parent::tearDown();
}