MediaWiki
REL1_24
|
00001 <?php 00002 00007 class UserNotLoggedInTest extends MediaWikiTestCase { 00008 00009 public function testConstruction() { 00010 $e = new UserNotLoggedIn(); 00011 $this->assertEquals( 'exception-nologin', $e->title ); 00012 $this->assertEquals( 'exception-nologin-text', $e->msg ); 00013 $this->assertEquals( array(), $e->params ); 00014 } 00015 00016 }