blob: 06c314ac67e9518c90f80e094e876f3f311db317 (
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
|
<?php
/**
* @version $Id: parser.inc.php,v 1.2 2005/03/25 21:00:22 harryf Exp $
* @package Doku
* @subpackage Tests
*/
/**
* Includes
*/
require_once DOKU_INC . 'inc/init.php';
require_once DOKU_INC . 'inc/confutils.php';
require_once DOKU_INC . 'inc/parser/parser.php';
require_once DOKU_INC . 'inc/parser/handler.php';
require_once DOKU_INC . 'inc/events.php';
require_once DOKU_INC . 'inc/mail.php';
/**
* @package Doku
* @subpackage Tests
*/
abstract class TestOfDoku_Parser extends PHPUnit_Framework_TestCase {
var $P;
var $H;
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]);
if ($call[0] == "nest") {
$call[1][0] = array_map('stripByteIndex',$call[1][0]);
}
return $call;
}
|