/**
  * @covers ::getUnixUsername
  * @expectedException \RuntimeException
  */
 public function testGetUnixUsernameWillThrowExceptionIfPropertyNotSet()
 {
     $application = new Application('test');
     $application->getUnixUsername();
 }