PortableInfobox/tests/phpunit/nodes/NodeInfoboxTest.php
2021-12-15 15:01:13 -07:00

31 lines
752 B
PHP

<?php
/**
* @group PortableInfobox
* @covers PortableInfobox\Parser\Nodes\NodeInfobox
*/
class NodeInfoboxTest extends MediaWikiIntegrationTestCase {
/**
* @covers PortableInfobox\Parser\Nodes\NodeInfobox::getParams
* @dataProvider paramsProvider
*
* @param $markup
* @param $expected
*/
public function testParams( $markup, $expected ) {
$node = PortableInfobox\Parser\Nodes\NodeFactory::newFromXML( $markup, [] );
$this->assertEquals( $expected, $node->getParams() );
}
public function paramsProvider() {
return [
[ '<infobox></infobox>', [] ],
[ '<infobox theme="abs"></infobox>', [ 'theme' => 'abs' ] ],
[ '<infobox theme="abs" more="sdf"></infobox>', [ 'theme' => 'abs', 'more' => 'sdf' ] ],
];
}
}