summaryrefslogtreecommitdiff
path: root/_test/tests/inc/parser/parser.inc.php
blob: f1207b11970484a327ec40f10c3517c15bad7c75 (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
<?php

require_once DOKU_INC . 'inc/parser/parser.php';
require_once DOKU_INC . 'inc/parser/handler.php';

abstract class TestOfDoku_Parser extends DokuWikiTest {

    var $P;
    var $H;

    function setUp() {
        parent::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;
}