PortableInfobox/tests/phpunit/PortableInfoboxTemplateEngineTest.php

36 lines
834 B
PHP
Raw Normal View History

<?php
2018-08-08 09:42:22 +00:00
/**
* @group PortableInfobox
* @covers PortableInfobox\Helpers\PortableInfoboxTemplateEngine
2018-08-08 09:42:22 +00:00
*/
class PortableInfoboxTemplateEngineTest extends MediaWikiTestCase {
/**
* @covers PortableInfobox\Helpers\PortableInfoboxTemplateEngine::isSupportedType
2017-03-15 18:07:51 +00:00
* @dataProvider isTypeSupportedInTemplatesDataProvider
*/
public function testIsTypeSupportedInTemplates( $type, $result, $description ) {
$this->assertEquals(
$result,
PortableInfobox\Helpers\PortableInfoboxTemplateEngine::isSupportedType( $type ),
$description
);
}
2017-03-15 18:07:51 +00:00
public function isTypeSupportedInTemplatesDataProvider() {
return [
[
'type' => 'title',
'result' => true,
'description' => 'valid data type'
],
[
'type' => 'invalidTestType',
'result' => false,
'description' => 'invalid data type'
]
];
}
2018-08-16 09:25:53 +00:00
}