GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: src/catkin/dg_control/dynamic_graph_manager/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
 * @author Maximilien Naveau (maximilien.naveau@gmail.com)
4
 * @license License BSD-3-Clause
5
 * @copyright Copyright (c) 2019, New York University and Max Planck Gesellschaft.
6
 * @date 2019-05-22
7
 *
8
 * @brief Main file that runs all unittest using gtest
9
 * @see https://git-amd.tuebingen.mpg.de/amd-clmc/ci_example/wikis/catkin:-how-to-implement-unit-tests
10
 */
11
12
#include <gtest/gtest.h>
13
14
6
int main(int argc, char **argv) {
15
6
  ::testing::InitGoogleTest(&argc, argv);
16
6
  return RUN_ALL_TESTS();
17

18
}