| Current Path : /var/www/element/data/www/wiki.element.ru/tests/phpunit/includes/api/format/ |
| Current File : /var/www/element/data/www/wiki.element.ru/tests/phpunit/includes/api/format/ApiFormatPhpTest.php |
<?php
/**
* @group API
* @group Database
*/
class ApiFormatPhpTest extends ApiFormatTestBase {
function testValidPhpSyntax() {
$data = $this->apiRequest( 'php', array( 'action' => 'query', 'meta' => 'siteinfo' ) );
$this->assertInternalType( 'array', unserialize( $data ) );
$this->assertGreaterThan( 0, count( (array) $data ) );
}
}