Skip to content

Commit

Permalink
Update include path for tests
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/XML_HTMLSax/trunk@160390 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Harry Fuecks committed Jun 2, 2004
1 parent cdf2f24 commit e15ff48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/unit_tests.php
Expand Up @@ -13,14 +13,14 @@
require_once(SIMPLE_TEST . 'mock_objects.php');
require_once(SIMPLE_TEST . 'reporter.php');

if (!defined('XML_HTMLSAX')) {
define('XML_HTMLSAX', '../../');
if (!defined('XML_HTMLSAX3')) {
define('XML_HTMLSAX3', '../');
}
require_once(XML_HTMLSAX . 'HTMLSax.php');
require_once(XML_HTMLSAX . 'HTMLSax/States.php');
require_once(XML_HTMLSAX . 'HTMLSax/Decorators.php');
require_once(XML_HTMLSAX3 . 'HTMLSax3.php');
require_once(XML_HTMLSAX3 . 'HTMLSax3/States.php');
require_once(XML_HTMLSAX3 . 'HTMLSax3/Decorators.php');

$test = &new GroupTest('XML::HTMLSax Tests');
$test = &new GroupTest('XML::HTMLSax3 Tests');
$test->addTestFile('xml_htmlsax_test.php');
$test->run(new HtmlReporter());
?>

0 comments on commit e15ff48

Please sign in to comment.