summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/Elastic/Exception/ClientBuilderNotFoundExceptionTest.php
blob: 6cb6b234a895a90fbf637b3400f22d179d3857a3 (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
<?php

namespace SMW\Tests\Elastic\Exception;

use SMW\Elastic\Exception\ClientBuilderNotFoundException;
use RuntimeException;

/**
 * @covers \SMW\Elastic\Exception\ClientBuilderNotFoundException
 * @group semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 3.0
 *
 * @author mwjames
 */
class ClientBuilderNotFoundExceptionTest extends \PHPUnit_Framework_TestCase {

	public function testCanConstruct() {

		$this->assertInstanceOf(
			RuntimeException::class,
			new ClientBuilderNotFoundException()
		);
	}

}