1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-09 16:56:20 +02:00
Files
php-htmlpurifier/tests/ConfigDoc/DOM/DocumentTest.php
2008-02-25 21:21:12 +00:00

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');
}
}