/**
  * Test if the getter for the webapp path works.
  *
  * @return void
  */
 public function testGetWebappPath()
 {
     // prepare the expected webapp path
     $webappPath = ApplicationTest::APP_BASE . DIRECTORY_SEPARATOR . ApplicationTest::NAME;
     // inject the path components
     $this->assertEquals($webappPath, $this->application->getWebappPath());
 }