summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DefinesTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DefinesTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DefinesTest.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DefinesTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DefinesTest.php
new file mode 100644
index 00000000..1982c1af
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DefinesTest.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace SMW\Tests;
+
+/**
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 1.9
+ *
+ * @author mwjames
+ */
+class DefinesTest extends \PHPUnit_Framework_TestCase {
+
+ /**
+ * @dataProvider constantsDataProvider
+ */
+ public function testConstants( $constant, $expected ) {
+ $this->assertEquals( $expected, $constant );
+ }
+
+ public function constantsDataProvider() {
+ return [
+ [ SMW_HEADERS_SHOW, 2 ],
+ [ SMW_HEADERS_PLAIN, 1 ],
+ [ SMW_HEADERS_HIDE, 0 ],
+ [ SMW_OUTPUT_HTML, 1 ],
+ [ SMW_OUTPUT_WIKI, 2 ],
+ [ SMW_OUTPUT_FILE, 3 ],
+ [ SMW_FACTBOX_HIDDEN, 1 ],
+ [ SMW_FACTBOX_SPECIAL, 2 ],
+ [ SMW_FACTBOX_NONEMPTY, 3 ],
+ [ SMW_FACTBOX_SHOWN, 5 ],
+ ];
+ }
+
+}