diff --git a/source/Test/DataReceiverTest.cpp b/source/Test/DataReceiverTest.cpp deleted file mode 100644 index 3da00bda..00000000 --- a/source/Test/DataReceiverTest.cpp +++ /dev/null @@ -1,24 +0,0 @@ -#include -#include -#include - -// Include the class definitions (DataReceiver, Entity, and GridPosition) -#include "DataCollection/DateReceiver.hpp" -#include "Core/Entity.hpp" -#include "Core/GridPosition.hpp" - -// Define your test cases -TEST_F(DataReceiverTest, DisplayPosition) { - // Call the DisplayPosition method - dataReceiver->DisplayPosition(*entity); - - // Retrieve the storage vector - const std::vector>& storage = dataReceiver->GetStorage(); - - // Check if the stored position matches the expected values - ASSERT_EQ(storage.size(), 1); - EXPECT_EQ(storage[0].first, 10); - EXPECT_EQ(storage[0].second, 20); -} - -