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 | |||
10 | #include "gtest/gtest.h" | ||
11 | |||
12 | 9 | int main(int argc, char **argv) | |
13 | { | ||
14 | 9 | ::testing::InitGoogleTest(&argc, argv); | |
15 | 9 | return RUN_ALL_TESTS(); | |
16 | } | ||
17 |