<?php
/**
* $Id: test.dir.php 648 2006-10-07 18:08:20Z matthieu $
*/
if (!defined('__CLASS_PATH__')) {
define('__CLASS_PATH__', realpath(dirname(__FILE__) . '/../../'));
}
require_once __CLASS_PATH__ . '/Autoload.php';
/**
* launcher for the unit test case Test_Files_DirectoryListing
* @author Matthieu MARY <matthieu@phplibrairies.com>
* @package files
* @package class_dir
* @subpackage unit_test_case
*/
$test = new Test_Files_DirectoryListing();
$test->run(new TextReporter());
?>
|