我用一个模拟类创建了一个简单的C ++测试项目:
#include <gtest/gtest.h>
#include <gmock/gmock.h>
class TestMock
{
public:
MOCK_CONST_METHOD0(Method1, void());
};
TEST(Test, Test1)
{
TestMock mock;
}
int main(int argc, char * argv[])
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
我使用Visual Studio 2017(15.3.3)。这是一个包含所有默认设置的x86调试项目。
我已将gtest.lib和gmock.lib添加到链接器。当我编译和链接时,我收到此错误:
1>------ Build started: Project: ConsoleApplication1, Configuration: Debug Win32 ------
1>ConsoleApplication1.obj : error LNK2001: unresolved external symbol "class testing::internal::Mutex testing::internal::g_linked_ptr_mutex" (?g_linked_ptr_mutex@internal@testing@@3VMutex@12@A)
1>ConsoleApplication1.obj : error LNK2001: unresolved external symbol "class testing::internal::Mutex testing::internal::g_gmock_mutex" (?g_gmock_mutex@internal@testing@@3VMutex@12@A)
1>d:\Develop\CPP\ConsoleApplication1\Debug\ConsoleApplication1.exe : fatal error LNK1120: 2 unresolved externals
1>Done building project "ConsoleApplication1.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
我已经用Vcpkg下载了gtest包。它被编译为32位DLL。 Gtest工作正常,但是当我实例化mock类时,我得到了链接错误。我还测试了一个CMake项目,我得到了同样的错误。
答案 0 :(得分:0)
来自MuratŞeker的评论:
将“ GTEST_LINKED_AS_SHARED_LIBRARY”预处理程序定义添加到您的项目中。参见:github.com/google/googletest/issues/292
这对我有用。