xref: /dokuwiki/lib/plugins/config/_test/Setting/SettingArrayTest.php (revision 70cc2cbf41ee65a6048aab5aab40e124b337e295)
1<?php
2
3namespace dokuwiki\plugin\config\test\Setting;
4
5/**
6 * @group plugin_config
7 * @group admin_plugins
8 * @group plugins
9 * @group bundled_plugins
10 */
11class SettingArrayTest extends SettingTest {
12
13    /** @inheritdoc */
14    public function dataOut() {
15        return [
16            [ ['foo','bar'], "\$conf['test'] = array('foo', 'bar');\n"]
17        ];
18    }
19
20}
21