PortableInfobox/tests/phpunit/nodes/NodeInfoboxTest.php
2022-03-11 13:35:51 -07:00

34 lines
790 B
PHP

<?php
use PortableInfobox\Parser\Nodes\NodeFactory;
/**
* @group PortableInfobox
* @covers \PortableInfobox\Parser\Nodes\NodeInfobox
* @coversDefaultClass \PortableInfobox\Parser\Nodes\NodeInfobox
*/
class NodeInfoboxTest extends MediaWikiIntegrationTestCase {
/**
* @covers ::getParams
* @dataProvider paramsProvider
*
* @param $markup
* @param $expected
*/
public function testParams( $markup, $expected ) {
$node = 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' ] ],
];
}
}