aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/mocksqlitestatement.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/unittest/mocksqlitestatement.h')
-rw-r--r--tests/unit/unittest/mocksqlitestatement.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/unittest/mocksqlitestatement.h b/tests/unit/unittest/mocksqlitestatement.h
index 351c6708a5..7be7f3f05e 100644
--- a/tests/unit/unittest/mocksqlitestatement.h
+++ b/tests/unit/unittest/mocksqlitestatement.h
@@ -53,7 +53,9 @@ public:
MOCK_METHOD2(bind, void (int, Utils::SmallStringView));
MOCK_METHOD2(bind, void (int, long));
- MOCK_METHOD1(prepare, void (Utils::SmallStringView sqlStatement));
+ MOCK_METHOD1(prepare, void(Utils::SmallStringView sqlStatement));
+
+ MOCK_METHOD1(checkColumnCount, void(int));
};
template<>