gtest 첫 번째 테스트 용례 작성 오류 및 해결 과정

2727 단어
gtest를 설치한 후 첫 번째 테스트 사례 테스트를 작성합니다.testmain.cpp
#include <iostream>
#include <gtest/gtest.h>

using namespace std;

int Foo(int a,int b)
{
 return a+b;
}

TEST(FooTest, ZeroEqual)
{
 ASSERT_EQ(0,0);
}

TEST(FooTest, HandleNoneZeroInput)
{
    EXPECT_EQ(12,Foo(4, 10));
    EXPECT_EQ(6, Foo(30, 18));
}


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

gtest의 설명에 따라MakeFile 파일은
TARGET=test_main

all:
    gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
    g++  $(gtest-config --cppflags --cxxflags) -o $(TARGET).o -c test_main.cpp
    g++  $(gtest-config --ldflags --libs) -o $(TARGET) $(TARGET).o
clean:
    rm -rf *.o $(TARGET)

그런데 컴파일할 때 오류가 났어요.
cxy-/home/chenxueyou/gtest$ make
gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
g++   -o test_main.o -c test_main.cpp
g++  -o test_main test_main.o
test_main.o: In function `FooTest_ZeroEqual_Test::TestBody()':
test_main.cpp:(.text+0x9e): undefined reference to `testing::internal::AssertHelper::AssertHelper(testing::TestPartResult::Type, char const*, int, char const*)'
...

일부 오류 정보를 생략하고 undefined reference를 보았습니다. 컴파일은 통과되었지만 링크가 실패했습니다. 대응하는 라이브러리를 찾지 못한 것으로 추정됩니다.실제 실행 시 인쇄된 명령은
   g++  -o test_main.o -c test_main.cpp
    g++  -o test_main test_main.o

분명히 gtest를 도입한 헤더 파일도, gtest에 대응하는 라이브러리도 불러오지 않았습니다.명령 >echo $(gtest-config --cppflags --cxxflags)echo $(gtest-config --ldflags --libs) 을 실행하면 gtest가 설정한 헤더 파일 경로와 라이브러리 파일 경로를 얻을 수 있습니다.
cxy-/home/chenxueyou/gtest$ echo $(gtest-config --cppflags --cxxflags)
-I/usr/include -pthread
cxy-/home/chenxueyou/gtest$ echo $(gtest-config --ldflags --libs)
-L/usr/lib64 -lgtest -pthread

Makefile에서 실행할 때 위의 두 명령의 결과는 비어 있습니다.그래서 Makefile을 수정하고 헤더 파일 경로와 라이브러리 파일 경로를 수동으로 지정합니다.Makefile은
TARGET=test_main

all:
    gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
    g++  -I/usr/include -pthread -o $(TARGET).o -c test_main.cpp
    g++ -L/usr/lib64 -lgtest -pthread -o $(TARGET) $(TARGET).o
clean:
    rm -rf *.o $(TARGET)

이렇게 하면 우리의 첫 번째ltest 테스트 파일을 컴파일하여 통과할 수 있습니다.
총결산
1. Makefile에서 실제로 실행되는 명령은 예상한 명령과 다를 수 있으므로 자세히 살펴보십시오.2.gtest는 헤더 파일과 라이브러리를 통해 프로젝트를 도입하고 헤더 파일과 라이브러리 파일의 위치를 지정한다.gtest-config 명령은 우리가 대응하는 경로를 찾을 수 있도록 도와줍니다
나의 사이트 나비의 갑작스러운 블로그 정원에 오신 것을 환영합니다.만약 본문을 읽는 과정에서 어떤 문제가 있으면 작가에게 연락하여 전재하고 출처를 밝혀 주십시오!

좋은 웹페이지 즐겨찾기