mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-10 16:01:53 +00:00
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());
|
||
|
|
||
|
?>
|