aboutsummaryrefslogtreecommitdiffstats
path: root/lib/htmlpurifier/tests/HTMLPurifier/DefinitionCache/DecoratorHarness.php
blob: 64951a3edcc1503c7d51d8ec9d0a0b6eda4cd511 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

generate_mock_once('HTMLPurifier_DefinitionCache');

class HTMLPurifier_DefinitionCache_DecoratorHarness extends HTMLPurifier_DefinitionCacheHarness
{

    function setup() {
        $this->mock     = new HTMLPurifier_DefinitionCacheMock();
        $this->mock->type = 'Test';
        $this->cache    = $this->cache->decorate($this->mock);
        $this->def      = $this->generateDefinition();
        $this->config   = $this->generateConfigMock();
    }

    function teardown() {
        unset($this->mock);
        unset($this->cache);
    }

}

// vim: et sw=4 sts=4