示例#1
0
文件: StateTest.php 项目: itkg/batch
 /**
  * @covers Itkg\Batch\State::getDuration
  */
 public function testGetDuration()
 {
     $this->object->setStart(10000);
     $this->object->setEnd(25000);
     $this->assertEquals(15000, $this->object->getDuration());
 }