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