query/backends/tests/QueryTest.cpp

16 lines
242 B
C++

#include "catch2/catch_test_macros.hpp"
#include <connection.hpp>
TEST_CASE("Query test", "[query]") {
SECTION("Create") {
REQUIRE(true);
}
SECTION("Insert") {
REQUIRE(true);
}
SECTION("Select") {
REQUIRE(true);
}
}