netbsd/external/bsd/ntp/dist/sntp/tests_main.h
2015-10-15 10:25:28 +02:00

25 lines
431 B
C++

/* $NetBSD: tests_main.h,v 1.3 2015/07/10 14:20:34 christos Exp $ */
#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