blob: 623cf6af5e6446d6252c863c2feea932f9d03ac8 (
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
|
<?php
/**
* @version $Id: lexer.group.php,v 1.2 2005/03/25 21:00:22 harryf Exp $
* @package JPSpan
* @subpackage Tests
*/
/**
* Init
*/
require_once('./testconfig.php');
/**
* @package JPSpan
* @subpackage Tests
*/
class LexerGroupTest extends GroupTest {
function LexerGroupTest() {
$this->GroupTest('LexerGroupTest');
$this->addTestFile('lexer.test.php');
}
}
/**
* Conditional test runner
*/
if (!defined('TEST_RUNNING')) {
define('TEST_RUNNING', true);
$test = &new LexerGroupTest();
$test->run(new HtmlReporter());
}
?>
|