/**
  * Test if the getter for the cache dir works.
  *
  * @return void
  */
 public function testGetCacheDir()
 {
     $cacheDir = ApplicationTest::TMP_DIR . DIRECTORY_SEPARATOR . ApplicationInterface::CACHE_DIRECTORY;
     $this->assertEquals($cacheDir, $this->application->getCacheDir());
 }