summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImportContentsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImportContentsTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImportContentsTest.php126
1 files changed, 126 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImportContentsTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImportContentsTest.php
new file mode 100644
index 00000000..69099ee3
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Importer/ImportContentsTest.php
@@ -0,0 +1,126 @@
+<?php
+
+namespace SMW\Tests\Importer;
+
+use SMW\Importer\ImportContents;
+
+/**
+ * @covers \SMW\Importer\ImportContents
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class ImportContentsTest extends \PHPUnit_Framework_TestCase {
+
+ public function testCanConstruct() {
+
+ $this->assertInstanceOf(
+ '\SMW\Importer\ImportContents',
+ new ImportContents()
+ );
+ }
+
+ public function testDescription() {
+
+ $instance = new ImportContents();
+
+ $instance->setDescription( 'Foo' );
+
+ $this->assertSame(
+ 'Foo',
+ $instance->getDescription()
+ );
+ }
+
+ public function testVersion() {
+
+ $instance = new ImportContents();
+
+ $instance->setVersion( '1' );
+
+ $this->assertSame(
+ 1,
+ $instance->getVersion()
+ );
+ }
+
+ public function testName() {
+
+ $instance = new ImportContents();
+
+ $instance->setName( 'Foo' );
+
+ $this->assertSame(
+ 'Foo',
+ $instance->getName()
+ );
+ }
+
+ public function testNamespace() {
+
+ $instance = new ImportContents();
+
+ $instance->setNamespace( 'Foo' );
+
+ $this->assertSame(
+ 'Foo',
+ $instance->getNamespace()
+ );
+ }
+
+ public function testContents() {
+
+ $instance = new ImportContents();
+
+ $instance->setContents( 'Foo' );
+
+ $this->assertSame(
+ 'Foo',
+ $instance->getContents()
+ );
+ }
+
+ public function testContentType() {
+
+ $instance = new ImportContents();
+
+ $instance->setContentType( 'Foo' );
+
+ $this->assertSame(
+ 'Foo',
+ $instance->getContentType()
+ );
+ }
+
+ public function testError() {
+
+ $instance = new ImportContents();
+
+ $instance->addError( 'Foo' );
+
+ $this->assertSame(
+ [ 'Foo' ],
+ $instance->getErrors()
+ );
+ }
+
+ public function testOptions() {
+
+ $instance = new ImportContents();
+
+ $instance->setOptions( 'Foo' );
+
+ $this->assertSame(
+ [ 'Foo' ],
+ $instance->getOptions()
+ );
+
+ $this->assertFalse(
+ $instance->getOption( 'Foo' )
+ );
+ }
+
+}