<?php
 
/**
 
 * Common acces to simpletest lib
 
 * @author Axel Benz
 
 * @package simpletest_access
 
 * 
 
 */
 
 
/**
 
 * Includes section.
 
 * This docblock is necessary to make PHPDocumentor work correctly.
 
 *
 
 */
 
define ("path_to_simpletest_installation",realpath(dirname(__FILE__)).DIRECTORY_SEPARATOR.
 
        "../simple_test/");
 
require_once(path_to_simpletest_installation."eclipse.php");
 
require_once(path_to_simpletest_installation."reporter.php");
 
require_once(path_to_simpletest_installation."web_tester.php");
 
require_once(path_to_simpletest_installation."unit_tester.php");
 
error_reporting(E_ALL);
 
?>
 
 |