Your IP : 172.70.80.239


Current Path : /var/www/element/data/www/wiki.element.ru/tests/phpunit/includes/api/format/
Upload File :
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 ) );
		
		
	}

}