xref: /plugin/dev/skel/_test/StandardTest.php (revision 70316b849e063a6d74c051966388525c6a62b604)
1*70316b84SAndreas Gohr<?php
2*70316b84SAndreas Gohr
3*70316b84SAndreas Gohrnamespace dokuwiki\@@PLUGIN_TYPE@@\@@PLUGIN_NAME@@\test;
4*70316b84SAndreas Gohr
5*70316b84SAndreas Gohruse DokuWikiTest;
6*70316b84SAndreas Gohr
7*70316b84SAndreas Gohr/**
8*70316b84SAndreas Gohr * FIXME tests for the @@PLUGIN_NAME@@ @@PLUGIN_TYPE@@
9*70316b84SAndreas Gohr *
10*70316b84SAndreas Gohr * @group @@PLUGIN_TYPE@@_@@PLUGIN_NAME@@
11*70316b84SAndreas Gohr * @group @@PLUGIN_TYPE@@s
12*70316b84SAndreas Gohr */
13*70316b84SAndreas Gohrclass @@TEST@@Test extends DokuWikiTest
14*70316b84SAndreas Gohr{
15*70316b84SAndreas Gohr    /**
16*70316b84SAndreas Gohr     * @todo implement tests
17*70316b84SAndreas Gohr     */
18*70316b84SAndreas Gohr    public function testSomething()
19*70316b84SAndreas Gohr    {
20*70316b84SAndreas Gohr
21*70316b84SAndreas Gohr    }
22*70316b84SAndreas Gohr}
23