Example #1
0
    /**
     * @test
     * @dataProvider environmentDataProvider
     */
    public function its_cache_and_log_path_is_relative_to_root_dir($env)
    {
        $app = new Application($env, true);

        $rootDir = $app->getRootDir();

        $this->assertEquals($rootDir . '/var/cache/' . $env, $app->getCacheDir());
        $this->assertEquals($rootDir . '/var/logs/' . $env, $app->getLogDir());
    }