1 write to Client
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
BasicTests.cs (1)
29Client = Factory.CreateDefaultClient();
35 references to Client
Microsoft.AspNetCore.Mvc.FunctionalTests (35)
BasicTests.cs (35)
51var response = await Client.GetAsync("Home/CSharp7View"); 71var response = await Client.GetAsync("PassThrough/Index?value=123"); 95var response = await Client.GetAsync(url); 115var response = await Client.GetAsync("http://localhost/Home/PlainView"); 134var response = await Client.GetAsync("Home/ViewWithPrefixedAttributeValue"); 147var response = await Client.GetAsync("Home/NoContentResult"); 161var response = await Client.GetAsync("Home/ActionReturningTask"); 178var result = await Client.GetAsync("Monitor/CountActionDescriptorInvocations"); 190var response = await Client.GetAsync("Home/HttpsOnlyAction"); 206var response = await Client.SendAsync(new HttpRequestMessage( 224var response = await Client.SendAsync(new HttpRequestMessage( 242var response = await Client.GetAsync("Home/JsonHelperInView"); 265var response = await Client.GetAsync("Home/JsonHelperWithSettingsInView?snakeCase=false"); 288var response = await Client.GetAsync("Home/JsonHelperWithSettingsInView?snakeCase=true"); 338var response = await Client.GetAsync("Links/Index?view=" + viewName); 350var response = await Client.GetAsync("Home/GetApplicationDescription"); 362var response = await Client.GetAsync("SqlData/TruncateAllDbRecords"); 375var response = await Client.GetStringAsync("/PageRoute/ConventionalRouteView/mypage"); 388var response = await Client.GetStringAsync("/PageRoute/AttributeView/test-page"); 404var response = await Client.PostAsync("/Home/Product", new FormUrlEncodedContent(product)); 411var responseBody = await Client.GetStringAsync("/Home/Product"); 421var response = await Client.GetAsync(url); 434var response = await Client.GetStringAsync(url); 448var response = await Client.GetStringAsync(url); 459var response = await Client.GetStringAsync("Testing/Builder"); 469var response = await Client.GetStringAsync("Home/GetAssemblyPartData"); 498var document = await Client.GetHtmlDocumentAsync("ViewDataProperty/ViewDataPropertyToView"); 515var document = await Client.GetHtmlDocumentAsync("ViewDataProperty/ViewDataPropertyToViewComponent"); 536var response = await Client.PostAsync("BindProperties/Action", new FormUrlEncodedContent(formContent)); 559var response = await Client.PostAsync("BindProperties/Action", new FormUrlEncodedContent(formContent)); 581var response = await Client.PostAsync("BindProperties/Action", new FormUrlEncodedContent(formContent)); 601var response = await Client.PostAsync("BindPropertiesSupportsGet/Action", new FormUrlEncodedContent(formContent)); 613var response = await Client.GetAsync("BindPropertiesSupportsGet/Action?Name=OnGetTestName"); 625var response = await Client.GetAsync("BindPropertiesWithValidation/Action?Password=Test&ConfirmPassword=different"); 652var response = await Client.SendAsync(request);