1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php /** * @group API * @group Database * @group medium */ class ApiFormatPhpTest extends ApiFormatTestBase { public function testValidPhpSyntax() { $data = $this->apiRequest( 'php', array( 'action' => 'query', 'meta' => 'siteinfo' ) ); $this->assertInternalType( 'array', unserialize( $data ) ); $this->assertGreaterThan( 0, count( (array)$data ) ); } }