summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/queryprinters/RdfResultPrinterTest.php
blob: debdc0cba4671980a3e6d90c1f20c89fcd38a045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

namespace SMW\Test;

use SMW\RdfResultPrinter;

/**
 * @covers \SMW\RdfResultPrinter
 *
 * @group SMW
 * @group SMWExtension
 *
 * @license GNU GPL v2+
 * @since   1.9
 *
 * @author mwjames
 */
class RdfResultPrinterTest extends QueryPrinterTestCase {

	/**
	 * @return string|false
	 */
	public function getClass() {
		return '\SMW\RdfResultPrinter';
	}

	/**
	 * @return RdfResultPrinter
	 */
	private function getInstance( $parameters = [] ) {
		return $this->setParameters( new RdfResultPrinter( 'rdf' ), $parameters );
	}

	public function testConstructor() {

		$this->assertInstanceOf(
			'\SMW\RdfResultPrinter',
			$this->getInstance()
		);
	}

}