diff options
Diffstat (limited to 'inc/parser/tests/parser.test.php')
-rw-r--r-- | inc/parser/tests/parser.test.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/inc/parser/tests/parser.test.php b/inc/parser/tests/parser.test.php new file mode 100644 index 000000000..53ac650d8 --- /dev/null +++ b/inc/parser/tests/parser.test.php @@ -0,0 +1,47 @@ +<?php +/** +* @version $Id: parser.test.php,v 1.2 2005/03/25 21:00:22 harryf Exp $ +* @package Doku +* @subpackage Tests +*/ + +/** +* Includes +*/ +require_once('./testconfig.php'); +require_once DOKU_INC . 'inc/parser/parser.php'; +require_once DOKU_INC . 'inc/parser/handler.php'; +//require_once DOKU . 'parser/renderer.php'; + +//Mock::generate('Doku_Renderer'); + +/** +* @package Doku +* @subpackage Tests +*/ +class TestOfDoku_Parser extends UnitTestCase { + + var $P; + var $H; + + function TestOfDoku_Parser() { + $this->UnitTestCase('TestOfDoku_Parser'); + } + + function setup() { + $this->P = & new Doku_Parser(); + $this->H = & new Doku_Handler(); + $this->P->Handler = & $this->H; + } + + function tearDown() { + unset($this->P); + unset($this->H); + } +} + +function stripByteIndex($call) { + unset($call[2]); + return $call; +} + |