mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
70bd80e66a
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@132 48356398-32a2-884e-a903-53898d9a118a
42 lines
1.5 KiB
PHP
42 lines
1.5 KiB
PHP
<?php
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
require_once 'simpletest/unit_tester.php';
|
|
require_once 'simpletest/reporter.php';
|
|
require_once 'simpletest/mock_objects.php';
|
|
|
|
require_once 'Debugger.php';
|
|
|
|
// emulates inserting a dir called HTMLPurifier into your class dir
|
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../library');
|
|
|
|
// since Mocks can't be called from within test files, we need to do
|
|
// a little jumping through hoops to generate them
|
|
function generate_mock_once($name) {
|
|
$mock_name = $name . 'Mock';
|
|
if (class_exists($mock_name)) return false;
|
|
Mock::generate($name, $mock_name);
|
|
}
|
|
|
|
$test = new GroupTest('HTMLPurifier');
|
|
|
|
$test->addTestFile('HTMLPurifier/LexerTest.php');
|
|
$test->addTestFile('HTMLPurifier/Lexer/DirectLexTest.php');
|
|
//$test->addTestFile('TokenTest.php');
|
|
$test->addTestFile('HTMLPurifier/ChildDefTest.php');
|
|
$test->addTestFile('HTMLPurifier/GeneratorTest.php');
|
|
$test->addTestFile('HTMLPurifier/EntityLookupTest.php');
|
|
$test->addTestFile('HTMLPurifier/Strategy/RemoveForeignElementsTest.php');
|
|
$test->addTestFile('HTMLPurifier/Strategy/MakeWellFormedTest.php');
|
|
$test->addTestFile('HTMLPurifier/Strategy/FixNestingTest.php');
|
|
$test->addTestFile('HTMLPurifier/Strategy/CompositeTest.php');
|
|
$test->addTestFile('HTMLPurifier/Strategy/CoreTest.php');
|
|
$test->addTestFile('HTMLPurifier/Strategy/ValidateAttributesTest.php');
|
|
$test->addTestFile('HTMLPurifier/AttrDef/EnumTest.php');
|
|
$test->addTestFile('HTMLPurifier/AttrDef/IDTest.php');
|
|
$test->addTestFile('HTMLPurifier/IDAccumulatorTest.php');
|
|
|
|
$test->run( new HtmlReporter() );
|
|
|
|
?>
|