Merge "Revert "Make it possible to install extensions using Composer""
[mediawiki.git] / tests / phpunit / includes / XmlJsTest.php
blob907ce79f9375fb80938a77cc3fe3b0784ede8f1c
1 <?php
3 /**
4 * @group Xml
5 */
6 class XmlJs extends MediaWikiTestCase {
8 /**
9 * @covers XmlJsCode::__construct
10 * @dataProvider provideConstruction
12 public function testConstruction( $value ) {
13 $obj = new XmlJsCode( $value );
14 $this->assertEquals( $value, $obj->value );
17 public function provideConstruction() {
18 return array(
19 array( null ),
20 array( '' ),