diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-10-22 01:23:28 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-10-22 01:23:28 +0200 |
commit | c13104acf0edfa5c08738d32e26ae51ea7e4407c (patch) | |
tree | 23141f0c865563590d33003fcbb5173d2ed0b53c /_test/cases/inc/parser/lexer.group.php | |
parent | aa11db09d61b813593c2ed7d91b329f98ae7010a (diff) | |
download | rpg-c13104acf0edfa5c08738d32e26ae51ea7e4407c.tar.gz rpg-c13104acf0edfa5c08738d32e26ae51ea7e4407c.tar.bz2 |
moved parser tests to new test environment
The parser tests are outdated and need to be adjusted. Currently 71 tests
fail. Others are probably missing.
darcs-hash:20051021232328-7ad00-c1d62951dad810dc73f8e78ae82f37465c21c261.gz
Diffstat (limited to '_test/cases/inc/parser/lexer.group.php')
-rw-r--r-- | _test/cases/inc/parser/lexer.group.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/_test/cases/inc/parser/lexer.group.php b/_test/cases/inc/parser/lexer.group.php new file mode 100644 index 000000000..623cf6af5 --- /dev/null +++ b/_test/cases/inc/parser/lexer.group.php @@ -0,0 +1,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()); +} +?> |