Ejemplo n.º 1
0
 /**
  * @covers Gloubster\Message\Job\AbstractJob::setDeliveryDuration
  * @covers Gloubster\Message\Job\AbstractJob::getDeliveryDuration
  */
 public function testSetDeliveryDuration()
 {
     $this->assertNull($this->object->getDeliveryDuration());
     $this->object->setDeliveryDuration(0.9876543209999999);
     $this->assertEquals(0.9876543209999999, $this->object->getDeliveryDuration());
 }