GCC Code Coverage Report
Directory: src/catkin/ Exec Total Coverage
File: src/catkin/examples/ci_example/ci_example_cpp/tests/main.cpp Lines: 4 4 100.0 %
Date: 2020-01-13 15:17:31 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 Gesellshaft.
6
 * @date 2019-05-22
7
 */
8
9
#include "gtest/gtest.h"
10
11
2
int main(int argc, char **argv) {
12
2
  ::testing::InitGoogleTest(&argc, argv);
13
2
  return RUN_ALL_TESTS();
14

6
}