FunctionalTestBase::fixture PHP 메소드

fixture() 보호된 메소드

protected fixture ( $fixture )
    protected function fixture($fixture)
    {
        $fixture = FIXTURES . DS . $fixture;
        if (!file_exists($fixture)) {
            throw new Exception("Fixture {$fixture} not found");
        }
        return $fixture;
    }