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 testImportPerformer() { $instance = new ImportContents(); $instance->setImportPerformer( 'Foo' ); $this->assertSame( 'Foo', $instance->getImportPerformer() ); } 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' ) ); } }