session progress

This commit is contained in:
Sascha Kühl
2025-02-17 16:07:41 +01:00
parent 9a95725959
commit 5109659882
4 changed files with 19 additions and 12 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
#include "SessionFixture.hpp"
#include "catch2/catch_test_macros.hpp"
namespace matador::test {
SessionFixture::SessionFixture()
@@ -14,7 +16,7 @@ SessionFixture::~SessionFixture() {
void SessionFixture::drop_table_if_exists(const std::string &table_name) const {
if (ses.table_exists(table_name)) {
ses.drop_table(table_name);
REQUIRE(ses.drop_table(table_name));
}
}