blob: 991f4b6d0da3fdde6abd47d049e9982a93122c12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef TESTS_MAIN_H
#define TESTS_MAIN_H
#include "config.h"
#include <string>
#include <vector>
#include <gtest/gtest.h>
extern "C" {
#include "ntp_stdlib.h"
}
class ntptest : public ::testing::Test {
public:
static void SetExtraParams(int start, int count, char** argv);
protected:
static std::vector<std::string> m_params;
};
#endif // TESTS_MAIN_H
|