| 154 | class SessionTest : public testing::Test { |
| 155 | public: |
| 156 | void bind() { |
| 157 | auto client2server = dap::pipe(); |
| 158 | auto server2client = dap::pipe(); |
| 159 | client->bind(server2client, client2server); |
| 160 | server->bind(client2server, server2client); |
| 161 | } |
| 162 | |
| 163 | std::unique_ptr<dap::Session> client = dap::Session::create(); |
| 164 | std::unique_ptr<dap::Session> server = dap::Session::create(); |