public function SetBound() { $this->report->setBound('test', true); $bound = $this->report->getBound(); $this->assertArrayhaskey('test', $bound); $this->assertEquals(1, $bound['test']); $this->report->setBound('test', false); $bound = $this->report->getBound(); $this->assertArrayhaskey('test', $bound); $this->assertEquals(0, $bound['test']); }