mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-07 18:36:09 +08:00
21 lines
323 B
C++
21 lines
323 B
C++
#ifndef DOSBOX_TEST_FIXTURE_H
|
|
#define DOSBOX_TEST_FIXTURE_H
|
|
|
|
#include <iterator>
|
|
#include <string>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#define SDL_MAIN_HANDLED
|
|
|
|
#include "control.h"
|
|
|
|
class DOSBoxTestFixture : public ::testing::Test {
|
|
public:
|
|
DOSBoxTestFixture() {}
|
|
void SetUp() override {}
|
|
void TearDown() override {}
|
|
};
|
|
|
|
#endif
|