summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/api/format/ApiFormatPhpTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/api/format/ApiFormatPhpTest.php')
-rw-r--r--tests/phpunit/includes/api/format/ApiFormatPhpTest.php12
1 files changed, 5 insertions, 7 deletions
diff --git a/tests/phpunit/includes/api/format/ApiFormatPhpTest.php b/tests/phpunit/includes/api/format/ApiFormatPhpTest.php
index 8209f591..a0bbb2dc 100644
--- a/tests/phpunit/includes/api/format/ApiFormatPhpTest.php
+++ b/tests/phpunit/includes/api/format/ApiFormatPhpTest.php
@@ -3,17 +3,15 @@
/**
* @group API
* @group Database
+ * @group medium
*/
class ApiFormatPhpTest extends ApiFormatTestBase {
- function testValidPhpSyntax() {
-
+ public function testValidPhpSyntax() {
+
$data = $this->apiRequest( 'php', array( 'action' => 'query', 'meta' => 'siteinfo' ) );
-
+
$this->assertInternalType( 'array', unserialize( $data ) );
- $this->assertGreaterThan( 0, count( (array) $data ) );
-
-
+ $this->assertGreaterThan( 0, count( (array)$data ) );
}
-
}