2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * tests for environment like OS, PHP, modules, ...
7 * @package phpMyAdmin-test
13 require_once 'PHPUnit/Framework.php';
15 class Environment_test
extends PHPUnit_Framework_TestCase
17 public function testPhpVersion()
19 $this->assertTrue(version_compare('5.2', phpversion(), '<='),
20 'phpMyAdmin requires PHP 5.2 or above');
23 public function testMySQL()
25 $this->markTestIncomplete();
28 public function testSession()
30 $this->markTestIncomplete();