diff --git a/docs/core/testing/unit-testing-mstest-writing-tests-data-driven.md b/docs/core/testing/unit-testing-mstest-writing-tests-data-driven.md index 18d421a4db545..ecc9972151dd4 100644 --- a/docs/core/testing/unit-testing-mstest-writing-tests-data-driven.md +++ b/docs/core/testing/unit-testing-mstest-writing-tests-data-driven.md @@ -3,7 +3,8 @@ title: Data-driven testing in MSTest description: Learn how to use data-driven testing in MSTest with DataRow, DynamicData, and TestDataRow to run the same test with multiple inputs. author: Evangelink ms.author: amauryleve -ms.date: 02/05/2026 +ai-usage: ai-assisted +ms.date: 03/09/2026 --- # Data-driven testing in MSTest @@ -323,12 +324,12 @@ public class IgnoreDynamicDataExample ## TestDataRow -The `TestDataRow` class provides enhanced control over test data in data-driven tests. Use `IEnumerable>` as your data source return type to specify: +The class provides enhanced control over test data in data-driven tests. Use of as your data source return type to specify: -- **Custom display names**: Set a unique display name per test case -- **Test categories**: Attach metadata to individual test cases -- **Ignore messages**: Skip specific test cases with reasons -- **Type-safe data**: Use generics for strongly-typed test data +- **Custom display names**: Set a unique display name per test case using the property. +- **Test categories**: Attach metadata to individual test cases using the property. +- **Ignore messages**: Skip specific test cases with reasons using the property. +- **Type-safe data**: Use generics for strongly-typed test data. ### Basic usage