MCPcopy Create free account
hub / github.com/Kitware/CMake / createResponse

Function createResponse

Utilities/cmcppdap/src/session_test.cpp:120–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118}
119
120dap::TestResponse createResponse() {
121 dap::TestResponse response;
122 response.b = true;
123 response.i = 99;
124 response.n = 123.456;
125 response.a = {5, 4, 3, 2, 1};
126 response.o = {
127 std::make_pair("one", dap::integer(1)),
128 std::make_pair("two", dap::number(2)),
129 std::make_pair("three", dap::string("3")),
130 };
131 response.s = "ROGER";
132 response.o1 = 50;
133 return response;
134}
135
136dap::TestEvent createEvent() {
137 dap::TestEvent event;

Callers 1

TEST_FFunction · 0.85

Calls 2

integerClass · 0.85
numberClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…