/**
  * Test if the getter for the session dir works.
  *
  * @return void
  */
 public function testGetSessionDir()
 {
     $sessionDir = ApplicationTest::TMP_DIR . DIRECTORY_SEPARATOR . ApplicationInterface::SESSION_DIRECTORY;
     $this->assertEquals($sessionDir, $this->application->getSessionDir());
 }