18 references to CreateRequest
Microsoft.AspNetCore.ResponseCaching.Tests (18)
ResponseCachingTests.cs (18)
29var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 30var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 53var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 54var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "different")); 144var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 147var cachedResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 153var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 177var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 180var cachedResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 186var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 209var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "path")); 210var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "PATH")); 233var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "?Expires=0")); 234var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 258var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 259var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "")); 929var initialResponse = await client.SendAsync(TestUtils.CreateRequest("HEAD", "?contentLength=10")); 930var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest("HEAD", "?contentLength=10"));