summaryrefslogtreecommitdiff
path: root/tests/functional/test_short_for_additional_attribs/Test.php
blob: e0e09347ebad8c354d6706311b80a22766ad3123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace tests\functional\test_short_for_additional_attribs;

use kch42\ste\STECore;
use tests\functional\BaseTest;

class Test extends BaseTest
{
    protected function getDirectory(): string
    {
        return __DIR__;
    }

    protected function setUpSte(STECore $ste): void
    {
        $ste->set_var_by_name("data", [
            ['content' => 'foo', 'foo' => true],
            ['content' => 'bar', 'foo' => false],
            ['content' => 'baz', 'foo' => false],
        ]);
    }
}