summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/RepositoryClientTest.php
blob: 38fdb133ae2eb79b349fb20050ab8eb2a3841c59 (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
43
44
45
46
47
48
49
50
51
<?php

namespace SMW\Tests\SPARQLStore;

use SMW\SPARQLStore\RepositoryClient;

/**
 * @covers \SMW\SPARQLStore\RepositoryClient
 * @group semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 2.2
 *
 * @author mwjames
 */
class RepositoryClientTest extends \PHPUnit_Framework_TestCase {

	public function testCanConstruct() {

		$this->assertInstanceOf(
			'\SMW\SPARQLStore\RepositoryClient',
			new RepositoryClient( '', '', '', '' )
		);
	}

	public function testPublicAccess() {

		$instance = new RepositoryClient( 'Foo', 'Bar', 'Nu', 'Vim' );

		$this->assertSame(
			'Foo',
			$instance->getDefaultGraph()
		);

		$this->assertSame(
			'Bar',
			$instance->getQueryEndpoint()
		);

		$this->assertSame(
			'Nu',
			$instance->getUpdateEndpoint()
		);

		$this->assertSame(
			'Vim',
			$instance->getDataEndpoint()
		);
	}

}