36 lines
629 B
PHP
36 lines
629 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* tests for environment like OS, PHP, modules, ...
|
|
*
|
|
* @package phpMyAdmin-test
|
|
*/
|
|
|
|
/**
|
|
*
|
|
*/
|
|
require_once 'PHPUnit/Framework.php';
|
|
|
|
/**
|
|
* @package phpMyAdmin-test
|
|
*/
|
|
class Environment_test extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testPhpVersion()
|
|
{
|
|
$this->assertTrue(version_compare('5.2', phpversion(), '<='),
|
|
'phpMyAdmin requires PHP 5.2 or above');
|
|
}
|
|
|
|
public function testMySQL()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
public function testSession()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
}
|
|
?>
|