GCC Code Coverage Report | |||||||||||||||||||||
|
|||||||||||||||||||||
Line | Branch | Exec | Source |
1 |
/** |
||
2 |
* \file main.cpp |
||
3 |
* \brief gtest main |
||
4 |
* \author Maximilien Naveau |
||
5 |
* \date 2018 |
||
6 |
* |
||
7 |
* Main file that runs all unittest using gtest |
||
8 |
* @see https://git-amd.tuebingen.mpg.de/amd-clmc/ci_example/wikis/catkin:-how-to-implement-unit-tests |
||
9 |
*/ |
||
10 |
|||
11 |
#include <gtest/gtest.h> |
||
12 |
|||
13 |
1 |
int main(int argc, char **argv) { |
|
14 |
1 |
::testing::InitGoogleTest(&argc, argv); |
|
15 |
1 |
return RUN_ALL_TESTS(); |
|
16 |
✓✗✓✗ |
3 |
} |
Generated by: GCOVR (Version 4.2) |