llvm/lldb/unittests/Host/NativeProcessProtocolTest.cpp

//===-- NativeProcessProtocolTest.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 "TestingSupport/Host/NativeProcessTestUtils.h"

#include "lldb/Host/common/NativeProcessProtocol.h"
#include "llvm/Support/Process.h"
#include "llvm/Testing/Support/Error.h"
#include "gmock/gmock.h"

usingnamespacelldb_private;
usingnamespacelldb;
usingnamespacetesting;

TEST(NativeProcessProtocolTest, SetBreakpoint) {}

TEST(NativeProcessProtocolTest, SetBreakpointFailRead) {}

TEST(NativeProcessProtocolTest, SetBreakpointFailWrite) {}

TEST(NativeProcessProtocolTest, SetBreakpointFailVerify) {}

TEST(NativeProcessProtocolTest, ReadMemoryWithoutTrap) {}

TEST(NativeProcessProtocolTest, ReadCStringFromMemory) {}

TEST(NativeProcessProtocolTest, ReadCStringFromMemory_MaxSize) {}

TEST(NativeProcessProtocolTest, ReadCStringFromMemory_CrossPageBoundary) {}