mageekguy\atoum\test::getTestedClassPath PHP Method

getTestedClassPath() public method

public getTestedClassPath ( )
    public function getTestedClassPath()
    {
        if ($this->testedClassPath === null) {
            $testedClass = new \reflectionClass($this->getTestedClassName());
            $this->testedClassPath = $testedClass->getFilename();
        }
        return $this->testedClassPath;
    }
test