summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/SPARQLStore/Exception/HttpEndpointConnectionExceptionTest.php
blob: c0843f9e55683321ff5fcc09953ae23d5e0b096f (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
<?php

namespace SMW\Tests\SPARQLStore\Exception;

use SMW\SPARQLStore\Exception\HttpEndpointConnectionException;

/**
 * @covers \SMW\SPARQLStore\Exception\HttpEndpointConnectionException
 * @group semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 2.0
 *
 * @author mwjames
 */
class HttpEndpointConnectionExceptionTest extends \PHPUnit_Framework_TestCase {

	public function testCanConstruct() {

		$this->assertInstanceOf(
			HttpEndpointConnectionException::class,
			new HttpEndpointConnectionException( 'Foo', 'Bar', 'Que' )
		);
	}

}