DEV Community

Discussion on: Introduction to ASP.NET Core Integration Testing

Collapse
 
sakinala1 profile image
sakinala1

iam using webapplicationfactory

calling methods as
var response = await _client.GetStringAsync("api/controller/method");

here how to pass parameters...to that method..hope you understand

Thread Thread
 
kaos profile image
Kai Oswald

You can just use string interpolation.

var url = $"api/controller/method/{id}?param1={param1}&param2={param2}";
var response = await _client.GetStringAsync(url);