Regreph\TestCase::getTestMethods PHP Method

getTestMethods() public method

public getTestMethods ( )
    public function getTestMethods()
    {
        return array_filter(get_class_methods($this), function ($m) {
            return strpos($m, 'test') === 0;
        });
    }