mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-31 03:10:09 +02:00
Add missing parent class Definition.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1092 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
33
tests/HTMLPurifier/DefinitionTest.php
Normal file
33
tests/HTMLPurifier/DefinitionTest.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
require_once 'HTMLPurifier/Definition.php';
|
||||
|
||||
Mock::generatePartial(
|
||||
'HTMLPurifier_Definition',
|
||||
'HTMLPurifier_Definition_Testable',
|
||||
array('doSetup'));
|
||||
|
||||
class HTMLPurifier_DefinitionTest extends UnitTestCase
|
||||
{
|
||||
function test_setup() {
|
||||
$def = new HTMLPurifier_Definition_Testable();
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->expectOnce('doSetup', array($config));
|
||||
$def->setup($config);
|
||||
}
|
||||
function test_setup_redundant() {
|
||||
$def = new HTMLPurifier_Definition_Testable();
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->expectNever('doSetup');
|
||||
$def->setup = true;
|
||||
$def->setup($config);
|
||||
}
|
||||
function test_doSetup_abstract() {
|
||||
$def = new HTMLPurifier_Definition();
|
||||
$this->expectError('Cannot call abstract method');
|
||||
$config = HTMLPurifier_Config::createDefault();
|
||||
$def->doSetup($config);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
@@ -58,6 +58,7 @@ $test_files[] = 'ChildDef/TableTest.php';
|
||||
$test_files[] = 'ConfigSchemaTest.php';
|
||||
$test_files[] = 'ConfigTest.php';
|
||||
$test_files[] = 'ContextTest.php';
|
||||
$test_files[] = 'DefinitionTest.php';
|
||||
$test_files[] = 'DoctypeRegistryTest.php';
|
||||
$test_files[] = 'ElementDefTest.php';
|
||||
$test_files[] = 'EncoderTest.php';
|
||||
|
Reference in New Issue
Block a user