collection_proxy progress added test frame

This commit is contained in:
2026-06-26 15:52:53 +02:00
parent 47fd6d68e4
commit 1b98eb4019
3 changed files with 28 additions and 21 deletions
+1
View File
@@ -5,6 +5,7 @@ list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras)
add_executable(CoreTests
../backends/SchemaFixture.hpp
logger/LoggerTest.cpp
object/CollectionTest.cpp
object/ObjectCacheTest.cpp
object/ObjectTest.cpp
object/PrimaryKeyResolverTest.cpp
+7
View File
@@ -0,0 +1,7 @@
#include <catch2/catch_test_macros.hpp>
#include "matador/object/collection.hpp"
#include "matador/object/object.hpp"
TEST_CASE("Test collection", "[collection]") {
}