DEV Community

Discussion on: Introduction to ASP.NET Core Integration Testing

Collapse
 
kaos profile image
Kai Oswald

I didn' want to cover this, because these are general Testing basics.
But to pass parameters to your tests you can use the DataRow attribute.

This maps the values in your Datarows to the test method params.

[DataRow(1)]
[DataRow(2)]
void Test(int id) 
{

}