We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DAPTestBase
1 parent ac1fcaf commit 5e681d4Copy full SHA for 5e681d4
lldb/unittests/DAP/TestBase.h
@@ -23,7 +23,8 @@ class PipeBase : public testing::Test {
23
void SetUp() override;
24
};
25
26
-/// A base class for tests that need transport configured.
+/// A base class for tests that need transport configured for communicating DAP
27
+/// messages.
28
class TransportBase : public PipeBase {
29
protected:
30
std::unique_ptr<lldb_dap::Transport> to_dap;
@@ -32,6 +33,7 @@ class TransportBase : public PipeBase {
32
33
34
35
36
+/// A base class for tests that interact with a `lldb_dap::DAP` instance.
37
class DAPTestBase : public TransportBase {
38
39
std::unique_ptr<lldb_dap::DAP> dap;
0 commit comments