public function setupQueryBuilder() { $this->objectGetter->setSelectQueryFields($this->getInput('fields', 1)); $this->objectGetter->setMainQuery(); $this->objectGetter->setId($this->getInput('id', 1)); $this->objectGetter->setMimeType($this->getInput('mimetype', 1)); $this->objectGetter->setOrderBy($this->getInput('orderBy', 1)); $this->objectGetter->setLimit($this->getInput('limit', 1)); $this->objectGetter->setGroupBy($this->getInput('groupBy', 1)); }
public function testSetIdWithArrayInInput() { $this->objectGetter->setId(array(1, 2, 3)); $this->assertNotEmpty($this->objectGetter->getQueryBuilder()->getParameter('id')); }