<?php
/**
* Initializes the PUnit test suite.
*
* @package PUnit
*
* @author Stephen Feest
*
* @version $Id: Initialize.php 106 2008-01-27 22:55:01Z sfeest $
*/
/**
* An absolute path to the root of the PUnit test suite.
*/
define('PUNIT_TEST_BASE', PUNIT_BASE . DIRECTORY_SEPARATOR . 'Test');
PUnit_ClassLoader::registerPath('PUnit_Test', PUNIT_TEST_BASE . DIRECTORY_SEPARATOR . 'Class');
?>