From 731c3b83493276b3958a0467b2be7024261bc866 Mon Sep 17 00:00:00 2001 From: rhinemann Date: Fri, 27 Dec 2024 19:28:38 +0200 Subject: [PATCH] Removed gmock include. --- CMakeLists.txt | 2 +- main.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d26434..af61725 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,4 +8,4 @@ add_executable(code main.cpp sort.h ) -target_link_libraries(code gtest gmock pthread) +target_link_libraries(code gtest pthread) diff --git a/main.cpp b/main.cpp index 43654df..15864b9 100644 --- a/main.cpp +++ b/main.cpp @@ -1,7 +1,6 @@ #include "sort.h" #include -#include TEST(QuickSortTest, SortsArrayInAscendingOrder) {