/**
  * @covers ::setUnixUsername
  * @expectedException \InvalidArgumentException
  */
 public function testSetUnixUsernameWillThrowExceptionIfEmptyString()
 {
     $application = new Application('test');
     $application->setUnixUsername('');
 }