llvm/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationServerTest.cpp

//===-- GDBRemoteCommunicationServerTest.cpp ------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include "GDBRemoteTestUtils.h"
#include "Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h"
#include "lldb/Utility/Connection.h"
#include "lldb/Utility/UnimplementedError.h"

namespace lldb_private {
namespace process_gdb_remote {

TEST(GDBRemoteCommunicationServerTest, SendErrorResponse_ErrorNumber) {}

TEST(GDBRemoteCommunicationServerTest, SendErrorResponse_Status) {}

TEST(GDBRemoteCommunicationServerTest, SendErrorResponse_UnimplementedError) {}

TEST(GDBRemoteCommunicationServerTest, SendErrorResponse_StringError) {}

TEST(GDBRemoteCommunicationServerTest, SendErrorResponse_ErrorList) {}

} // namespace process_gdb_remote
} // namespace lldb_private