MediaWiki  REL1_24
ReadOnlyErrorTest.php
Go to the documentation of this file.
00001 <?php
00002 
00007 class ReadOnlyErrorTest extends MediaWikiTestCase {
00008 
00009     public function testConstruction() {
00010         $e = new ReadOnlyError();
00011         $this->assertEquals( 'readonly', $e->title );
00012         $this->assertEquals( 'readonlytext', $e->msg );
00013         $this->assertEquals( wfReadOnlyReason() ?: array(), $e->params );
00014     }
00015 
00016 }