Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 469 Bytes

install-googletest.md

File metadata and controls

15 lines (10 loc) · 469 Bytes

Install googletest

We use googletest for performing automated unit testing (usually via Travis CI). In order to avoid compilation issues, it is recommended to work with source files, i.e. not precompiled binaries, and build the final googletest libraries along with the user's project.

Install googletest (Ubuntu 17.04 and later)

sudo apt install googletest

Install googletest (Ubuntu 14.04 and 16.04)

sudo apt install libgtest-dev