Lines Matching refs:response
105 StoreContentResponse response; in RunStoreContentTests() local
106 server.SendRequest(request, response); in RunStoreContentTests()
108 …Except("StoreContentResponse::status", response.status, true, "After requesting to store data on a… in RunStoreContentTests()
115 StoreContentResponse response; in RunStoreContentTests() local
116 server.SendRequest(request, response); in RunStoreContentTests()
118 …Except("StoreContentResponse::status", response.status, true, "After requesting to store data with… in RunStoreContentTests()
128 GetContentResponse response; in RunGetContentTests() local
129 server.SendRequest(request, response); in RunGetContentTests()
131 …Except("StoreContentResponse::status", response.status, true, "After requesting to get data from s… in RunGetContentTests()
132 Except("StoreContentResponse::data", response.data, {5,6,7,8,9}, "Received data must be correct"); in RunGetContentTests()
139 GetContentResponse response; in RunGetContentTests() local
140 server.SendRequest(request, response); in RunGetContentTests()
142 …Except("StoreContentResponse::status", response.status, false, "Requesting to get data from server… in RunGetContentTests()
167 CompileShaderResponse response; in RunCompileShaderTests() local
168 server.SendRequest(request, response); in RunCompileShaderTests()
170 …Except("StoreContentResponse::status", response.status, true, "After requesting server to compile … in RunCompileShaderTests()
171 …Except("StoreContentResponse::binary.empty()", response.binary.empty(), false, "Received data must… in RunCompileShaderTests()