summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/XmlJsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phpunit/includes/XmlJsTest.php')
-rw-r--r--www/wiki/tests/phpunit/includes/XmlJsTest.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/www/wiki/tests/phpunit/includes/XmlJsTest.php b/www/wiki/tests/phpunit/includes/XmlJsTest.php
new file mode 100644
index 00000000..c7975efa
--- /dev/null
+++ b/www/wiki/tests/phpunit/includes/XmlJsTest.php
@@ -0,0 +1,26 @@
+<?php
+
+/**
+ * @group Xml
+ */
+class XmlJsTest extends PHPUnit\Framework\TestCase {
+
+ use MediaWikiCoversValidator;
+
+ /**
+ * @covers XmlJsCode::__construct
+ * @dataProvider provideConstruction
+ */
+ public function testConstruction( $value ) {
+ $obj = new XmlJsCode( $value );
+ $this->assertEquals( $value, $obj->value );
+ }
+
+ public static function provideConstruction() {
+ return [
+ [ null ],
+ [ '' ],
+ ];
+ }
+
+}