public function setUp() { $this->job = new Job(); $this->job->setKey('job_key'); $this->job->setIndex(new Index('index_key', 'Index Name', 'http://index.url', 'affId')); $this->job->setTitle('Analista de Sistema para Software de RH'); $this->job->setCompany('Mega Enterprise, Co'); $this->job->setSalaryCurrencyCode('BRL'); $this->job->setSalaryMin(1000); $this->job->setSalaryMax(2000); $this->job->setCity('Sao Paulo'); $this->job->setState('SP'); $this->job->setCountry('Brasil'); $this->job->setSource('www.ceviu.com.br'); $this->job->setDate(new \DateTime('Sat, 13 Feb 2016 08:59:39 GMT')); $this->job->setSnippet('Principais atribuições do cargo...'); $this->job->setDescription('Descrição detalhada do cargo...'); $this->job->setViewUrl('http://job.url/pt-br/job-12345'); $this->job->setApplyUrl('http://job.url/pt-br/apply-12345'); $this->job->setFeatured(false); }