mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
e99520ab96
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1253 48356398-32a2-884e-a903-53898d9a118a
33 lines
959 B
PHP
33 lines
959 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);
|
|
}
|
|
}
|
|
|