mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
bba0d0b77a
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@130 48356398-32a2-884e-a903-53898d9a118a
21 lines
457 B
PHP
21 lines
457 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
|
|
|
class HTMLPurifier_IDAccumulatorTest extends UnitTestCase
|
|
{
|
|
|
|
function test() {
|
|
|
|
// initialize the accumulator
|
|
$accumulator = new HTMLPurifier_IDAccumulator();
|
|
|
|
$this->assertTrue( $accumulator->add('id1'));
|
|
$this->assertTrue( $accumulator->add('id2'));
|
|
$this->assertFalse($accumulator->add('id1')); // repeated id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|