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