GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: src/catkin/robots/blmc_robots/tests/main.cpp Lines: 4 4 100.0 %
Date: 2020-04-15 11:50:02 Branches: 2 4 50.0 %

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
}