mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-08 13:39:25 -04:00
25 lines
431 B
C++
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
|