patch #2242765 [core] Navi panel server links wrong
[phpmyadmin/crack.git] / test / Environment_test.php
blobe3775f16a8a0b68bd800f0a85434fdd6f5c0b8b1
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * tests for environment like OS, PHP, modules, ...
6 * @version $Id$
7 * @package phpMyAdmin-test
8 */
10 /**
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();