summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php59
1 files changed, 59 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php
new file mode 100644
index 00000000..f200f19b
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Fixtures/Properties/AreaProperty.php
@@ -0,0 +1,59 @@
+<?php
+
+namespace SMW\Tests\Utils\Fixtures\Properties;
+
+use SMW\DataValueFactory;
+use SMW\DIProperty;
+use SMW\SemanticData;
+
+/**
+ * @license GNU GPL v2+
+ * @since 2.1
+ *
+ * @author mwjames
+ */
+class AreaProperty extends FixtureProperty {
+
+ /**
+ * @var array
+ */
+ private $conversionValues = [
+ '1 km²',
+ '0.38610 sq mi',
+ '1000 m²',
+ '247.1054 acre',
+ '988.4215 rood'
+ ];
+
+ /**
+ * @since 2.1
+ */
+ public function __construct() {
+ $this->property = new DIProperty( 'Area' );
+ $this->property->setPropertyTypeId( '_qty' );
+ }
+
+ /**
+ * @since 2.1
+ *
+ * @return SemanticData
+ */
+ public function getDependencies() {
+
+ $semanticData = parent::getDependencies();
+
+ $dataValueFactory = DataValueFactory::getInstance();
+
+ foreach( $this->conversionValues as $conversionValue ) {
+ $semanticData->addDataValue(
+ $dataValueFactory->newDataValueByProperty(
+ new DIProperty( '_CONV' ),
+ $conversionValue
+ )
+ );
+ }
+
+ return $semanticData;
+ }
+
+}