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 |
} |