MediaWiki  REL1_22
XmlJsTest.php
Go to the documentation of this file.
00001 <?php
00002 
00006 class XmlJs extends MediaWikiTestCase {
00007 
00012     public function testConstruction( $value ) {
00013         $obj = new XmlJsCode( $value );
00014         $this->assertEquals( $value, $obj->value );
00015     }
00016 
00017     public function provideConstruction(){
00018         return array(
00019             array( null ),
00020             array( '' ),
00021         );
00022     }
00023 
00024 }