/**
  * @expectedException \InvalidArgumentException
  */
 public function test__throw_on_set_negative_int_to_valid_until()
 {
     $ed = new EntitiesDescriptor();
     $ed->setValidUntil(-1);
 }