Example #1
0
 public function testInstantiateJobWithAttributes()
 {
     $sourceId = uniqid();
     $title = "test title";
     $job = new Job(['sourceId' => $sourceId, 'title' => $title]);
     $this->assertEquals($sourceId, $job->getSourceId());
     $this->assertEquals($title, $job->getTitle());
 }