Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / test / Environment_test.php
blob4f0fe3bfa443fa7405306c633a2a4c0548d302d4
1 <?php
2 /* vim: 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('4.1', phpversion(), '<='),
20 'phpMyAdmin requires PHP 4.1 or above');
23 public function testMySQL()
25 $this->markTestIncomplete();
28 public function testSession()
30 $this->markTestIncomplete();