mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-12 16:38:40 +00:00
26 lines
633 B
PHP
26 lines
633 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/IDAccumulator.php';
|
||
|
|
||
|
class HTMLPurifier_IDAccumulatorTest extends UnitTestCase
|
||
|
{
|
||
|
|
||
|
function test() {
|
||
|
|
||
|
// initialize the accumulator
|
||
|
$accumulator = HTMLPurifier_IDAccumulator::instance();
|
||
|
$accumulator->reset();
|
||
|
|
||
|
$this->assertTrue( $accumulator->add('id1'));
|
||
|
$this->assertTrue( $accumulator->add('id2'));
|
||
|
$this->assertFalse($accumulator->add('id1')); // repeated id
|
||
|
$accumulator->reset();
|
||
|
|
||
|
$this->assertTrue( $accumulator->add('id2')); // test reset
|
||
|
$accumulator->reset();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|