blob: ca9084127e8b09a9ce9bc6753f483e1b9c6da892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php
/**
* @version $Id: parser.group.php,v 1.3 2005/03/30 13:42:10 harryf Exp $
* @package Dokuwiki
* @subpackage Tests
*/
/**
* Init
*/
require_once('./testconfig.php');
/**
* @package Dokuwiki
* @subpackage Tests
*/
class ParserGroupTest extends GroupTest {
function ParserGroupTest() {
$this->GroupTest('ParserGroupTest');
$this->addTestFile('parser_eol.test.php');
$this->addTestFile('parser_footnote.test.php');
$this->addTestFile('parser_formatting.test.php');
$this->addTestFile('parser_headers.test.php');
$this->addTestFile('parser_i18n.test.php');
$this->addTestFile('parser_links.test.php');
$this->addTestFile('parser_lists.test.php');
$this->addTestFile('parser_preformatted.test.php');
$this->addTestFile('parser_quote.test.php');
$this->addTestFile('parser_replacements.test.php');
$this->addTestFile('parser_table.test.php');
$this->addTestFile('parser_tocsections.test.php');
$this->addTestFile('parser_unformatted.test.php');
}
}
/**
* Conditional test runner
*/
if (!defined('TEST_RUNNING')) {
define('TEST_RUNNING', true);
$test = &new ParserGroupTest();
$test->run(new HtmlReporter());
}
?>
|