mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 14:58:42 +00:00
11 lines
287 B
PHP
11 lines
287 B
PHP
|
<?php
|
||
|
|
||
|
// since Mocks can't be called from within test files, we need to do
|
||
|
// a little jumping through hoops to generate them
|
||
|
function generate_mock_once($name) {
|
||
|
$mock_name = $name . 'Mock';
|
||
|
if (class_exists($mock_name)) return false;
|
||
|
Mock::generate($name, $mock_name);
|
||
|
}
|
||
|
|