gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/Exception/ParameterNotFoundExceptionT...

42 lines
736 B
PHP

<?php
namespace SMW\Tests\Exception;
use SMW\Exception\ParameterNotFoundException;
/**
* @covers \SMW\Exception\ParameterNotFoundException
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 3.0
*
* @author mwjames
*/
class ParameterNotFoundExceptionTest extends \PHPUnit\Framework\TestCase {
public function testCanConstruct() {
$instance = new ParameterNotFoundException( 'foo' );
$this->assertInstanceof(
ParameterNotFoundException::class,
$instance
);
$this->assertInstanceof(
'\InvalidArgumentException',
$instance
);
}
public function testGetName() {
$instance = new ParameterNotFoundException( 'bar' );
$this->assertEquals(
'bar',
$instance->getName()
);
}
}