freebsd-skq/contrib/ntp/sntp/tests_main.h
cy 8560674afd MFV ntp 4.2.8p1 (r258945, r275970, r276091, r276092, r276093, r278284)
Thanks to roberto for providing pointers to wedge this into HEAD.

Approved by:	roberto
2015-03-30 13:30:15 +00:00

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