mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
33 lines
961 B
PHP
33 lines
961 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|