lib: improve test coverage

Add a bunch of tests
This commit is contained in:
Dirk-Jan C. Binnema
2022-06-02 21:02:11 +03:00
parent 63521300a3
commit 13f0e24241
12 changed files with 275 additions and 54 deletions

View File

@ -383,7 +383,6 @@ public:
*
* @return iterator
*/
iterator begin() { return QueryResultsIterator(mset_.begin(), query_matches_); }
const iterator begin() const { return QueryResultsIterator(mset_.begin(), query_matches_); }
/**
@ -391,7 +390,6 @@ public:
*
* @return iterator
*/
iterator end() { return QueryResultsIterator(mset_.end(), query_matches_); }
const_iterator end() const { return QueryResultsIterator(mset_.end(), query_matches_); }
/**