mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-24 01:01:53 +00:00
23 lines
501 B
PHP
23 lines
501 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier.php';
|
||
|
|
||
|
// integration test
|
||
|
|
||
|
class HTMLPurifier_Test extends UnitTestCase
|
||
|
{
|
||
|
var $purifier;
|
||
|
|
||
|
function assertPurification($input, $expect) {
|
||
|
$result = $this->purifier->purify($input);
|
||
|
$this->assertIdentical($expect, $result);
|
||
|
}
|
||
|
|
||
|
function test() {
|
||
|
$config = HTMLPurifier_Config::createDefault();
|
||
|
$this->purifier = new HTMLPurifier($config);
|
||
|
$this->assertPurification("Null byte\0", "Null byte");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|