| 36 | } |
| 37 | |
| 38 | bool execAndReset(SQLite::Statement& query, int expected_modifications) |
| 39 | { |
| 40 | auto ret = query.exec(); |
| 41 | query.reset(); |
| 42 | return ret == expected_modifications; |
| 43 | } |
| 44 | |
| 45 | void execWithExceptionAndReset(SQLite::Statement& query, int expected_modifications, int line, const char* function, const char* context) |
| 46 | { |
no test coverage detected