mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
bf331d3a13
git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@20 48356398-32a2-884e-a903-53898d9a118a
21 lines
478 B
PHP
21 lines
478 B
PHP
<?php
|
|
|
|
load_simpletest(); // includes all relevant simpletest files
|
|
|
|
require_once 'XML/HTMLSax3.php'; // optional PEAR class
|
|
|
|
require_once 'HTML_Purifier.php';
|
|
require_once 'HTML_Lexer.php';
|
|
require_once 'MarkupFragment.php';
|
|
|
|
$test = new GroupTest('HTML_Purifier');
|
|
|
|
chdir('tests/');
|
|
$test->addTestFile('HTML_Purifier.php');
|
|
$test->addTestFile('HTML_Lexer.php');
|
|
//$test->addTestFile('MarkupFragment.php');
|
|
chdir('../');
|
|
|
|
$test->run(new HtmlReporter());
|
|
|
|
?>
|