8560674afd
Thanks to roberto for providing pointers to wedge this into HEAD. Approved by: roberto
23 lines
361 B
C++
23 lines
361 B
C++
#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
|