c – Gtest:未定义的参考

前端之家收集整理的这篇文章主要介绍了c – Gtest:未定义的参考前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图使用GoogleTest来测试一个简单的函数,但是当我在我的构建文件夹中运行make时,编译器会向我发出未定义的引用错误消息.我引用了gtest头文件,所以我不知道是什么问题.有任何想法吗?我是Unix和单元测试的整个主题的新手,所以我很可能会失去一些简单的东西.提前致谢!

错误消息:

CMakeFiles/Proj2.dir/main.cpp.o: In function `main':
main.cpp:(.text+0x1e): undefined reference to `testing::InitGoogleTest(int*,char**)'
main.cpp:(.text+0x23): undefined reference to `testing::UnitTest::GetInstance()'
main.cpp:(.text+0x2b): undefined reference to `testing::UnitTest::Run()'
collect2: error: ld returned 1 exit status

main.cpp中

#include "gtest/gtest.h"

int main(int argc,char **argv) {
    ::testing::InitGoogleTest(&argc,argv);
    return RUN_ALL_TESTS();
}

TEST.CPP

#include "gtest/gtest.h"
#include "Testable.h"

TEST(GetTwoTest,Two) {
    EXPECT_EQ(2,GetTwo());
}

Testable.cpp

#include "Testable.h"

int GetTwo() {
    return 3;
}

这是我的CMakeLists.txt文件

cmake_minimum_required(VERSION 2.6)

SET(CMAKE_CXX_FLAGS "-std=gnu++11") #Turn on C++11 Support

set(FILES_TO_TEST Testable.cpp)
set(UNIT_TESTS Test.cpp)
set(MAIN_FILE main.cpp)

add_subdirectory(gtest) #Build all the gtest stuff
include_directories(gtest/include)
include_directories(.)
add_library(codeToTest ${FILES_TO_TEST})

add_executable(Proj2 ${MAIN_FILE})
target_link_libraries(Proj2 codeToTest)

add_executable(unit-test ${UNIT_TESTS})
target_link_libraries(unit-test gtest gtest_main rt pthread codeToTest)

解决方法

您的设置看起来几乎是正确的.但是,您需要有两个独立的主要功能;一个用于真正的可执行文件Proj2,另一个用于gtest包含和用于测试可执行单元测试的功能.

你可以通过拥有2个不同的main.cpp文件来实现,比如main.cpp和test_main.cpp.您显示的那个将是test_main.cpp,并将被包含在add_executable(unit-test …)命令中.

您的新main.cpp将不会引用gtest,包括功能.

原文链接:https://www.f2er.com/c/116226.html

猜你在找的C&C++相关文章