summaryrefslogtreecommitdiff
path: root/tests/functional/test_array/Test.php
blob: 58f0cb81ceccf159f5e1623364429bd363ac2034 (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
<?php

namespace tests\functional\test_array;

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->vars["foo"] = array(
            "a" => array(
                "blabla" => "OK"
            ),
            "b" => "bla"
        );
        $ste->vars["bar"] = array(
            "baz" => "a"
        );
    }
}