Skip to content

Latest commit

 

History

History
130 lines (79 loc) · 2.89 KB

use_gtest.rst

File metadata and controls

130 lines (79 loc) · 2.89 KB

How to test test your project with Google Test

Google Test is a framework for writing C++ tests on a variety of platforms. We are going to see an example of how to use GTest with conan.

The source code

Clone the project from github:

$ git clone https://github.com/lasote/conan-gtest-example

This is our project layout:

conan-gtest-example/
      ├── .travis.yml
      ├── .gitlab-ci.yml
      ├── appveyor.yml
      ├── CMakeLists.txt
      ├── conanfile.py
      ├── encrypter.cpp
      ├── encrypter.h
      ├── LICENSE
      ├── README.md
      └── test_package
          ├── CMakeLists.txt
          ├── conanfile.py
          └── encryption_test.cpp

We will compile our project with CMake and Conan, so we use the cmake generator in conanfile.py

Installing requirements, compiling and running our tests

Conan will install all dependencies, build your project, create a package and run all tests

$ conan create . demo/testing

The conan create automates all steps for you, however, you need to create the test directory and conanfile.py to make sure that your package is correct.

CMake

Optionally, you could use CMake to build your project:

Install requirements

$ conan install .

Build your project normally with CMake:

$ mkdir build && cd build
$ cmake .. && cmake --build .

If you just want to build the project, all steps can be executed directly by CMake, or just invoking conan build.

Step by step

You could execute all Conan steps individually,

Install dependencies

$ conan install .

Export and build the project

$ conan export . lasote/testing
$ conan install conan-gtest-example/0.1.0@lasote/testing --build conan-gtest-example

So far, the package was exported and created, without testing.

Build test project

$ cd test_package
$ mkdir build && cd build
$ conan install ..
$ conan build ..

And run!

$ bin/encryption_test

[100%] Built target mytest
     Running main() from gtest_main.cc
     [==========] Running 1 test from 1 test case.
     [----------] Global test environment set-up.
     [----------] 1 test from TestingEncryption
     [ RUN      ] TestingEncryption.cipher


     Decrypted text is:
     The quick brown fox jumps over the lazy dog
     [       OK ] TestingEncryption.cipher (2 ms)
     [----------] 1 test from TestingEncryption (2 ms total)

     [----------] Global test environment tear-down
     [==========] 1 test from 1 test case ran. (2 ms total)
     [  PASSED  ] 1 test.