summaryrefslogtreecommitdiff
path: root/_test/cases/inc/parser/lexer.group.php
diff options
context:
space:
mode:
Diffstat (limited to '_test/cases/inc/parser/lexer.group.php')
-rw-r--r--_test/cases/inc/parser/lexer.group.php34
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());
+}
+?>