mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-14 01:08:41 +00:00
12 lines
233 B
PHP
12 lines
233 B
PHP
|
<?php
|
||
|
|
||
|
class ConfigDoc_DOM_DocumentTest extends UnitTestCase
|
||
|
{
|
||
|
|
||
|
function testOverload() {
|
||
|
$dom = new ConfigDoc_DOM_Document();
|
||
|
$this->assertIsA($dom->createElement('a'), 'ConfigDoc_DOM_Element');
|
||
|
}
|
||
|
|
||
|
}
|