mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-31 03:10:09 +02:00
Refactor index.php test runner, it was getting too big.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@660 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
11
tests/generate_mock_once.func.php
Normal file
11
tests/generate_mock_once.func.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?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);
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user