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