Suggest using TestMethodAttribute for parameterized tests (#367)

DataTestMethodAttribute is not recommended anymore - https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0044
This commit is contained in:
Manish Jayaswal 2025-10-30 16:06:26 -07:00 committed by GitHub
parent 2f137cf874
commit 47ef6fd17d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,7 +177,7 @@ bash
* Class `[TestClass]`, test `[TestMethod]`
* Setup/teardown: `[TestInitialize]`, `[TestCleanup]`
* Parameterized tests: **use `[DataTestMethod]` + `[DataRow]`**
* Parameterized tests: **use `[TestMethod]` + `[DataRow]`**
### Assertions