mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-12 16:38:40 +00:00
6d77fa061b
git-svn-id: http://htmlpurifier.org/svnroot/html_purifier/trunk@17 48356398-32a2-884e-a903-53898d9a118a
17 lines
326 B
PHP
17 lines
326 B
PHP
<?php
|
|
|
|
load_simpletest(); // includes all relevant simpletest files
|
|
|
|
require_once 'XML/HTMLSax3.php'; // optional PEAR class
|
|
|
|
require_once 'HTML_Purifier.php';
|
|
|
|
$test = new GroupTest('HTML_Purifier');
|
|
|
|
chdir('tests/');
|
|
$test->addTestFile('HTML_Purifier.php');
|
|
chdir('../');
|
|
|
|
$test->run(new HtmlReporter());
|
|
|
|
?>
|