<?php
 
/**
 
 * $Id: test.validateXML.php 312 2006-08-27 06:24:47Z matthieu $
 
 */
 
if (!defined('__CLASS_PATH__')) {
 
    define('__CLASS_PATH__', realpath(dirname(__FILE__).'/../../'));
 
}
 
require_once __CLASS_PATH__.'/Autoload.php';
 
/**
 
 * launcher for unit test case Test_Validator_SessionToken
 
 * @author Matthieu MARY <[email protected]>
 
 * @package validation
 
 * @subpackage unit_test_case
 
 */
 
$test = new Test_Validator_SessionToken();
 
$test->run(new TextReporter());
 
?>
 
 |