PHP Classes

File: include/simpletest_access/simpletest_includes.php

Recommend this page to a friend!
  Classes of hwrProgs   NabiCI   include/simpletest_access/simpletest_includes.php   Download  
File: include/simpletest_access/simpletest_includes.php
Role: Auxiliary script
Content type: text/plain
Description: simpletest_includes.php
Class: NabiCI
Continuous integration framework
Author: By
Last change:
Date: 14 years ago
Size: 615 bytes
 

Contents

Class file image Download
<?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);
?>