Computer Science/Software Engineering

맥북 Google Test 설치하기

dev.Woody 2021. 12. 6. 20:46

Google 테스트(gtest라고도 함)는 xUnit 아키텍처를 기반으로 하는 C 프로그래밍 언어용 단위 테스트 라이브러리이다.

가이드는 이곳을 참고하면 된다.
https://google.github.io/googletest/

설치의 같은 경우 아래 링크를 참고해서 설치하였다.
https://github.com/google/googletest/tree/main/googletest

 

git clone https://github.com/google/googletest.git -b release-1.11.0
cd googletest        # Main directory of the cloned repository.
mkdir build          # Create a directory to hold the build output.
cd build
cmake ..             # Generate native build scripts for GoogleTest.
make
sudo make install