mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 06:48:42 +00:00
16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
|
|
abstract class HTMLPurifier_TestDefinition extends HTMLPurifier_Definition
|
|
{
|
|
public $info;
|
|
public $info_candles;
|
|
public $info_random;
|
|
}
|
|
|
|
Mock::generatePartial(
|
|
'HTMLPurifier_TestDefinition',
|
|
'HTMLPurifier_DefinitionTestable',
|
|
array('doSetup'));
|
|
|
|
// vim: et sw=4 sts=4
|