/**
  * @expectedException \InvalidArgumentException
  */
 public function testSetNameThrowsExceptionWhenNameLengthTooBig()
 {
     $this->hasTemplateVersionDto();
     $invalidName = 'This name is over 100 characters long.   ' . '1234567890123456789012345678901234567890123456789012345678901';
     $this->templateVersionDto->setName($invalidName);
 }