22 references to CreateRequest
Microsoft.AspNetCore.OutputCaching.Tests (22)
OutputCacheTests.cs (22)
29var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
30var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
51var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
52var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "different"));
134var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
137var cachedResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
143var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
165var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
168var cachedResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
174var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
195var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "path"));
196var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "PATH"));
218var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, "path"));
219var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, "PATH"));
245var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
247var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
269var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
270var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
297var initialResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
298var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest(method, ""));
932var initialResponse = await client.SendAsync(TestUtils.CreateRequest("HEAD", "?contentLength=10"));
933var subsequentResponse = await client.SendAsync(TestUtils.CreateRequest("HEAD", "?contentLength=10"));