/** * */ public function testQuery() { $testResultSet = new ResultSet($this->resultData); $this->assertEquals($this->db->query('SELECT * FROM test_metric'), $testResultSet); }
/** * Gets the result from the database (builds the query) * * @return ResultSet */ public function getResultSet() { return $this->db->query($this->parseQuery()); }