phpmyadmin/test/PMATestCase.php
Madhura Jayaratne 4a8320aac4 Add doc comments
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2016-02-19 22:56:30 +11:00

24 lines
486 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Base class for phpMyAdmin tests
*
* @package PhpMyAdmin-test
*/
/**
* Base class for phpMyAdmin tests.
*
* @package PhpMyAdmin-test
*/
class PMATestCase extends PHPUnit_Framework_TestCase
{
/**
* This method is called before the first test of this test class is run.
*/
public static function setUpBeforeClass()
{
require 'libraries/config.default.php';
$GLOBALS['cfg'] = $cfg;
}
}