<?php
/**
* Initializes PUnit.
*
* @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 package.
*/
define('PUNIT_BASE', dirname(__FILE__));
require_once PUNIT_BASE . DIRECTORY_SEPARATOR . 'Class' . DIRECTORY_SEPARATOR . 'ClassLoader.php';
PUnit_ClassLoader::registerPath('PUnit', PUNIT_BASE . DIRECTORY_SEPARATOR . 'Class');
?>