mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-27 17:50:38 +00:00
26 lines
512 B
PHP
26 lines
512 B
PHP
<?php
|
|
|
|
/**
|
|
* @group PortableInfobox
|
|
* @group Database
|
|
* @group medium
|
|
* @coversDefaultClass ApiQueryAllInfoboxes
|
|
*/
|
|
class QueryAllInfoboxesTest extends ApiTestCase {
|
|
|
|
/**
|
|
* @covers ::__construct
|
|
* @covers ::execute
|
|
* @covers ::createLabel
|
|
* @covers AllInfoboxesQueryPage::doQuery
|
|
*/
|
|
public function testQueryAllInfoboxes() {
|
|
$this->doApiRequest( [
|
|
'action' => 'query',
|
|
'list' => 'allinfoboxes',
|
|
], null, null, self::getTestUser()->getUser() );
|
|
$this->addToAssertionCount( 1 );
|
|
}
|
|
|
|
}
|