#ifndef LLDB_UNITTESTS_PROCESS_GDB_REMOTE_GDBREMOTETESTUTILS_H
#define LLDB_UNITTESTS_PROCESS_GDB_REMOTE_GDBREMOTETESTUTILS_H
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h"
#include "lldb/Utility/Connection.h"
namespace lldb_private {
namespace process_gdb_remote {
class GDBRemoteTest : public testing::Test { … };
class MockConnection : public lldb_private::Connection { … };
class MockServer : public GDBRemoteCommunicationServer { … };
class MockServerWithMockConnection : public MockServer { … };
}
}
#endif