| Directory: | ./ |
|---|---|
| File: | tests/main.cpp |
| Date: | 2022-06-29 13:58:11 |
| Exec | Total | Coverage | |
|---|---|---|---|
| Lines: | 4 | 4 | 100.0% |
| 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 | ||
| 6 | * Gesellschaft. | ||
| 7 | * @date 2019-05-22 | ||
| 8 | * | ||
| 9 | * @brief Main file that runs all unittest using gtest | ||
| 10 | * @see | ||
| 11 | * https://git-amd.tuebingen.mpg.de/amd-clmc/ci_example/wikis/catkin:-how-to-implement-unit-tests | ||
| 12 | */ | ||
| 13 | |||
| 14 | #include <gtest/gtest.h> | ||
| 15 | |||
| 16 | 14 | int main(int argc, char **argv) | |
| 17 | { | ||
| 18 | 14 | ::testing::InitGoogleTest(&argc, argv); | |
| 19 | 14 | return RUN_ALL_TESTS(); | |
| 20 |
2/4✓ Branch 1 taken 14 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 14 times.
✗ Branch 4 not taken.
|
42 | } |
| 21 |