_value = 1.5; $this->_match = true; $this->_description = 'dummy-desc'; $this->_result = new Solarium_Result_Select_Debug_Detail( $this->_match, $this->_value, $this->_description ); } public function testGetValue() { $this->assertEquals($this->_value, $this->_result->getValue()); } public function testGetMatch() { $this->assertEquals($this->_match, $this->_result->getMatch()); } public function testGetDescription() { $this->assertEquals($this->_description, $this->_result->getDescription()); } }