From 50fee8ccc9e6dbc68081dffec5668c7b6affcac4 Mon Sep 17 00:00:00 2001 From: ullingerc Date: Thu, 5 Dec 2024 16:29:32 +0100 Subject: [PATCH] also move the unit test --- test/engine/CMakeLists.txt | 1 - test/parser/CMakeLists.txt | 1 + test/{engine => parser}/PayloadVariablesTest.cpp | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename test/{engine => parser}/PayloadVariablesTest.cpp (100%) diff --git a/test/engine/CMakeLists.txt b/test/engine/CMakeLists.txt index 4a949d51be..47704485d6 100644 --- a/test/engine/CMakeLists.txt +++ b/test/engine/CMakeLists.txt @@ -11,4 +11,3 @@ addLinkAndDiscoverTest(CountConnectedSubgraphsTest) addLinkAndDiscoverTest(BindTest engine) addLinkAndRunAsSingleTest(SpatialJoinAlgorithmsTest engine) addLinkAndDiscoverTestSerial(QueryExecutionTreeTest engine) -addLinkAndDiscoverTest(PayloadVariablesTest engine) diff --git a/test/parser/CMakeLists.txt b/test/parser/CMakeLists.txt index ac21f4b453..a694ed3f37 100644 --- a/test/parser/CMakeLists.txt +++ b/test/parser/CMakeLists.txt @@ -1,3 +1,4 @@ add_subdirectory(data) addLinkAndDiscoverTest(ParallelBufferTest parser) addLinkAndDiscoverTest(LiteralOrIriTest engine) +addLinkAndDiscoverTest(PayloadVariablesTest engine) diff --git a/test/engine/PayloadVariablesTest.cpp b/test/parser/PayloadVariablesTest.cpp similarity index 100% rename from test/engine/PayloadVariablesTest.cpp rename to test/parser/PayloadVariablesTest.cpp