コード例 #1
0
 /**
  * @covers Gloubster\Message\Presence\WorkerPresence::getSuccessJobs
  * @covers Gloubster\Message\Presence\WorkerPresence::setSuccessJobs
  */
 public function testGetSetSuccessJobs()
 {
     $success = mt_rand();
     $this->object->setSuccessJobs($success);
     $this->assertEquals($success, $this->object->getSuccessJobs());
 }