home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / test / Environment_test.php < prev    next >
PHP Script  |  2008-06-23  |  664b  |  33 lines

  1. <?php
  2. /* vim: expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * tests for environment like OS, PHP, modules, ...
  5.  *
  6.  * @version $Id: Environment_test.php 10140 2007-03-20 08:32:55Z cybot_tm $
  7.  * @package phpMyAdmin-test
  8.  */
  9.  
  10. /**
  11.  *
  12.  */
  13. require_once 'PHPUnit/Framework.php';
  14.  
  15. class Environment_test extends PHPUnit_Framework_TestCase
  16. {
  17.     public function testPhpVersion()
  18.     {
  19.         $this->assertTrue(version_compare('4.1', phpversion(), '<='),
  20.             'phpMyAdmin requires PHP 4.1 or above');
  21.     }
  22.  
  23.     public function testMySQL()
  24.     {
  25.         $this->markTestIncomplete();
  26.     }
  27.  
  28.     public function testSession()
  29.     {
  30.         $this->markTestIncomplete();
  31.     }
  32. }
  33. ?>