| 47 | |
| 48 | private: |
| 49 | void init_request() { |
| 50 | request_ = new (std::nothrow) GetDocumentRequest(); |
| 51 | request_->set_collection_name(collection_); |
| 52 | request_->set_debug_mode(false); |
| 53 | request_->set_primary_key(1); |
| 54 | } |
| 55 | |
| 56 | void init_response() { |
| 57 | response_ = new (std::nothrow) GetDocumentResponse(); |
nothing calls this directly
no test coverage detected