Lines Matching refs:testValue
197 std::string testValue = "Example"; variable
198 requestOptions.SetUrl(testValue);
200 EXPECT_EQ(url, testValue);
207 uint32_t testValue = 2; variable
208 requestOptions.SetPriority(testValue);
210 EXPECT_EQ(resultValue, testValue);
217 HttpDataType testValue = HttpDataType::ARRAY_BUFFER; variable
218 requestOptions.SetHttpDataType(testValue);
220 EXPECT_EQ(resultValue, testValue);
227 HttpProtocol testValue = HttpProtocol::HTTP1_1; variable
228 requestOptions.SetUsingProtocol(testValue);
237 HttpProtocol testValue = HttpProtocol::HTTP2; variable
238 requestOptions.SetUsingProtocol(testValue);
247 HttpProtocol testValue = HttpProtocol::HTTP3; variable
248 requestOptions.SetUsingProtocol(testValue);
257 HttpProtocol testValue = HttpProtocol::HTTP_NONE; variable
258 requestOptions.SetUsingProtocol(testValue);
267 uint32_t testValue = 50; variable
268 requestOptions.SetMaxLimit(testValue);
270 EXPECT_EQ(resultValue, testValue);
277 uint32_t testValue = 5000; variable
278 requestOptions.SetConnectTimeout(testValue);
280 EXPECT_EQ(resultValue, testValue);
287 uint32_t testValue = 5000; variable
288 requestOptions.SetReadTimeout(testValue);
290 EXPECT_EQ(resultValue, testValue);
312 std::string testValue = "TestBody"; variable
313 requestOptions.SetBody(testValue.data(), testValue.size());
315 EXPECT_EQ(resultValue, testValue);