1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-12 18:26:19 +02:00

Add HTML_Generator class and associated unit tests.

git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@32 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2006-04-16 03:27:40 +00:00
parent c4b23cc775
commit 7c6775d552
3 changed files with 104 additions and 0 deletions

View File

@ -8,6 +8,7 @@ require_once 'HTML_Purifier.php';
require_once 'HTML_Lexer.php';
require_once 'MarkupFragment.php';
require_once 'PureHTMLDefinition.php';
require_once 'HTML_Generator.php';
$test = new GroupTest('HTML_Purifier');
@ -16,6 +17,7 @@ $test->addTestFile('HTML_Purifier.php');
$test->addTestFile('HTML_Lexer.php');
//$test->addTestFile('MarkupFragment.php');
$test->addTestFile('PureHTMLDefinition.php');
$test->addTestFile('HTML_Generator.php');
chdir('../');
$test->run(new HtmlReporter());