<?php
 
 
ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . '../' . PATH_SEPARATOR . './include');
 
 
// Set this path to your SimpleTest installation
 
define('SIMPLETESTDIR', '../../../simpletest/');
 
 
function dump($var, $name='') {
 
    echo $name . '<pre>' . print_r($var, 1) . '</pre>';
 
}
 
 
 |