summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/PropertyValueTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/PropertyValueTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/PropertyValueTest.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/PropertyValueTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/PropertyValueTest.php
new file mode 100644
index 00000000..d2cf6532
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/DataValues/PropertyValueTest.php
@@ -0,0 +1,65 @@
+<?php
+
+namespace SMW\Tests\DataValues;
+
+use SMW\DataValues\PropertyValue;
+
+/**
+ * @covers \SMW\DataValues\PropertyValue
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.4
+ *
+ * @author mwjames
+ */
+class PropertyValueTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ PropertyValue::class,
+ new PropertyValue()
+ );
+ }
+
+ /**
+ * @dataProvider featuresProvider
+ */
+ public function testOptions( $options, $expected ) {
+
+ $instance = new PropertyValue();
+ $instance->setOption( 'smwgDVFeatures', $options );
+
+ $this->assertEquals(
+ $expected,
+ $instance->getOption( 'smwgDVFeatures' )
+ );
+ }
+
+ public function featuresProvider() {
+
+ $provider[] = [
+ SMW_DV_PROV_REDI,
+ true
+ ];
+
+ $provider[] = [
+ SMW_DV_NONE | SMW_DV_PROV_REDI,
+ true
+ ];
+
+ $provider[] = [
+ SMW_DV_NONE,
+ false
+ ];
+
+ $provider[] = [
+ false,
+ false
+ ];
+
+ return $provider;
+ }
+
+}