1 write to Client
Microsoft.AspNetCore.Mvc.FunctionalTests (1)
AsyncActionsTests.cs (1)
18Client = Factory.CreateDefaultClient();
26 references to Client
Microsoft.AspNetCore.Mvc.FunctionalTests (26)
AsyncActionsTests.cs (26)
34var response = await Client.GetAsync("http://localhost/AsyncActions/AsyncVoidAction"); 46var response = await Client.GetAsync("http://localhost/AsyncActions/TaskAction"); 58var response = await Client.GetAsync("http://localhost/AsyncActions/TaskExceptionAction"); 69var response = await Client.GetAsync("http://localhost/AsyncActions/TaskOfObjectAction?message=Alpha"); 81var response = await Client.GetAsync("http://localhost/AsyncActions/TaskOfObjectExceptionAction?message=Alpha"); 92var response = await Client.GetAsync("http://localhost/AsyncActions/TaskOfIActionResultAction?message=Beta"); 104var response = await Client.GetAsync("http://localhost/AsyncActions/TaskOfIActionResultExceptionAction?message=Beta"); 115var response = await Client.GetAsync("http://localhost/AsyncActions/TaskOfContentResultAction?message=Gamma"); 127var response = await Client.GetAsync("http://localhost/AsyncActions/TaskOfContentResultExceptionAction?message=Gamma"); 138var response = await Client.GetAsync("http://localhost/AsyncActions/PreCompletedValueTaskOfObjectAction?message=Delta"); 150var response = await Client.GetAsync("http://localhost/AsyncActions/PreCompletedValueTaskOfObjectExceptionAction?message=Delta"); 161var response = await Client.GetAsync("http://localhost/AsyncActions/PreCompletedValueTaskOfIActionResultAction?message=Epsilon"); 173var response = await Client.GetAsync("http://localhost/AsyncActions/PreCompletedValueTaskOfIActionResultExceptionAction?message=Epsilon"); 184var response = await Client.GetAsync("http://localhost/AsyncActions/PreCompletedValueTaskOfContentResultAction?message=Zeta"); 196var response = await Client.GetAsync("http://localhost/AsyncActions/PreCompletedValueTaskOfContentResultExceptionAction?message=Zeta"); 207var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableVoidAction"); 219var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableVoidExceptionAction"); 230var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableOfObjectAction?message=Eta"); 242var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableOfObjectExceptionAction?message=Eta"); 253var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableOfIActionResultAction?message=Theta"); 265var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableOfIActionResultExceptionAction?message=Theta"); 276var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableOfContentResultAction?message=Iota"); 288var response = await Client.GetAsync("http://localhost/AsyncActions/CustomAwaitableOfContentResultExceptionAction?message=Iota"); 299var response = await Client.GetAsync("AsyncActions/ActionWithSuffix"); 309var response = await Client.GetAsync("AsyncActions/ActionWithSuffixAsync"); 319var response = await Client.GetAsync("AsyncActions/ActionReturningView");