mageekguy\atoum\runner::getTestMethods PHP Method

getTestMethods() public method

public getTestMethods ( array $namespaces = [], array $tags = [], array $testMethods = [], $testBaseClass = null )
$namespaces array
$tags array
$testMethods array
    public function getTestMethods(array $namespaces = array(), array $tags = array(), array $testMethods = array(), $testBaseClass = null)
    {
        $classes = array();
        foreach ($this->getDeclaredTestClasses($testBaseClass) as $testClass) {
            $test = new $testClass();
            if ($test->isIgnored($namespaces, $tags) === false) {
                $methods = $test->runTestMethods($testMethods, $tags);
                if ($methods) {
                    $classes[$testClass] = $methods;
                }
            }
        }
        return $classes;
    }
runner