gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/NamespaceUriFinderTest.php

52 lines
768 B
PHP

<?php
namespace SMW\Tests;
use SMW\NamespaceUriFinder;
/**
* @covers \SMW\NamespaceUriFinder
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 2.4
*
* @author mwjames
*/
class NamespaceUriFinderTest extends \PHPUnit\Framework\TestCase {
use PHPUnitCompat;
/**
* @dataProvider namespaceProvider
*/
public function testGetUriForNamespaceKey( $key, $expected ) {
$this->assertInternalType(
$expected,
NamespaceUriFinder::getUri( $key )
);
}
public function namespaceProvider() {
$provider[] = [
'Foo',
'boolean'
];
$ns = [
'owl', 'rdf', 'rdfs', 'swivt', 'xsd', 'skos', 'foaf', 'dc',
'OWL'
];
foreach ( $ns as $key ) {
$provider[] = [
$key,
'string'
];
}
return $provider;
}
}