mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
3e982c7f2c
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@79 48356398-32a2-884e-a903-53898d9a118a
19 lines
519 B
PHP
19 lines
519 B
PHP
<?php
|
|
|
|
load_simpletest(); // includes all relevant simpletest files
|
|
|
|
// emulates inserting a dir called HTMLPurifier into your class dir
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../../');
|
|
|
|
$test = new GroupTest('HTMLPurifier');
|
|
|
|
$test->addTestFile('HTMLPurifier.php');
|
|
$test->addTestFile('Lexer.php');
|
|
//$test->addTestFile('Token.php');
|
|
$test->addTestFile('Definition.php');
|
|
$test->addTestFile('ChildDef.php');
|
|
$test->addTestFile('Generator.php');
|
|
|
|
$test->run( new HtmlReporter() );
|
|
|
|
?>
|