MediaWiki  REL1_19
XmlJsTest.php
Go to the documentation of this file.
00001 <?php
00002 class XmlJs extends MediaWikiTestCase {
00003         public function testConstruction() {
00004                 $obj = new XmlJsCode( null );
00005                 $this->assertNull( $obj->value );
00006                 $obj = new XmlJsCode( '' );
00007                 $this->assertSame( $obj->value, '' );
00008         }
00009 }