blob: 584165d66d87576398588ec6a55a80e6c042407e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "tests_main.h"
extern "C" {
const char * Version = "stub unit test Version string";
};
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
init_lib();
init_auth();
// Some tests makes use of extra parameters passed to the tests
// executable. Save these params as static members of the base class.
if (argc > 1) {
ntptest::SetExtraParams(1, argc-1, argv);
}
return RUN_ALL_TESTS();
}
std::vector<std::string> ntptest::m_params;
void ntptest::SetExtraParams(int start, int count, char** argv)
{
for (int i=0; i<count; i++) {
m_params.push_back(argv[i+start]);
}
}
|