summaryrefslogtreecommitdiff
path: root/tests/functional/test_foreach/Test.php
blob: 0fc8a062aefc84f4c00570d7a7f38644187e12e8 (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_foreach;

use r7r\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"] = [
            "a" => ["a" => 100, "b" => 200],
            "b" => ["a" => 1, "b" => 2],
            "c" => ["a" => 42, "b" => 1337]
        ];
    }
}