alexia\mar\tests::registerTests PHP Method

registerTests() public method

Register test(s);
public registerTests ( $testType, $tests ) : void
return void
    public function registerTests($testType, $tests)
    {
        foreach ($tests as $test) {
            $this->tests[] = ['type' => $testType, 'test' => $test, 'callable' => [$this->testTypes[$testType], '_' . $test]];
        }
    }