Lines Matching refs:response
105 StoreContentResponse response;
106 server.SendRequest(request, response);
108 Except("StoreContentResponse::status", response.status, true, "After requesting to store data on a server we should received true");
115 StoreContentResponse response;
116 server.SendRequest(request, response);
118 Except("StoreContentResponse::status", response.status, true, "After requesting to store data with a name that is already in use we should received false");
128 GetContentResponse response;
129 server.SendRequest(request, response);
131 Except("StoreContentResponse::status", response.status, true, "After requesting to get data from server store we should received true");
132 Except("StoreContentResponse::data", response.data, {5,6,7,8,9}, "Received data must be correct");
139 GetContentResponse response;
140 server.SendRequest(request, response);
142 Except("StoreContentResponse::status", response.status, false, "Requesting to get data from server memory that no longer exist should result in false");
167 CompileShaderResponse response;
168 server.SendRequest(request, response);
170 Except("StoreContentResponse::status", response.status, true, "After requesting server to compile glsl shader we should get true as a result");
171 Except("StoreContentResponse::binary.empty()", response.binary.empty(), false, "Received data must be not empty");