dosbox-x/tests/dosbox_test_fixture.h
2021-11-23 04:58:07 -05:00

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