mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
8c439aa62c
- Bootstrap hotfix to prevent multiple loading in standalone. We need a better way of doing this! - Make extras/ autoloader polite too - Initialize autoloaders in common.php - Add trailing dash to "skip" in phpt - Upgrade SimpleTest.php not to allow directories git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1554 48356398-32a2-884e-a903-53898d9a118a
23 lines
536 B
PHP
23 lines
536 B
PHP
<?php
|
|
|
|
/**
|
|
* Controller for PHPT that implements the SimpleTest unit-testing interface.
|
|
*/
|
|
class PHPT_Controller_SimpleTest extends SimpleTestCase
|
|
{
|
|
|
|
protected $_path;
|
|
|
|
public function __construct($path) {
|
|
$this->_path = $path;
|
|
parent::SimpleTestCase($path);
|
|
}
|
|
|
|
public function testPhpt() {
|
|
$suite = new PHPT_Suite(array($this->_path));
|
|
$phpt_reporter = new PHPT_Reporter_SimpleTest($this->_reporter);
|
|
$suite->run($phpt_reporter);
|
|
}
|
|
|
|
}
|