Directory: | ./ |
---|---|
File: | tests/main.cpp |
Date: | 2022-06-30 06:29:57 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 4 | 4 | 100.0% |
Branches: | 2 | 4 | 50.0% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | /** | ||
2 | * @file main.cpp | ||
3 | * @author Vincent Berenz | ||
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 Initialize and run unittest using the google suit | ||
10 | */ | ||
11 | #include "gtest/gtest.h" | ||
12 | |||
13 | 28 | int main(int argc, char **argv) | |
14 | { | ||
15 | 28 | ::testing::InitGoogleTest(&argc, argv); | |
16 | 28 | return RUN_ALL_TESTS(); | |
17 |
2/4✓ Branch 1 taken 28 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 28 times.
✗ Branch 4 not taken.
|
84 | } |
18 |