Skip to content

Commit 3550247

Browse files
authored
Update unit-testing-mstest-migration-from-v1-to-v3.md
1 parent 75083a3 commit 3550247

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

docs/core/testing/unit-testing-mstest-migration-from-v1-to-v3.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -139,18 +139,6 @@ Choose the option that best suits your project setup. Both methods ensure your p
139139

140140
If AreEqual, AreNotEqual, AreSame, or AreNotSame assertions cause errors, we recommend checking that the types being compared are compatible. If they are, consider adding explicit generic typing to resolve the issue.
141141

142-
### DataRowAttribute Updates
143-
144-
The `DataRowAttribute` constructors have been simplified in MSTest v3. Update parameterized tests using `DataRow` to align with the revised constructors.
145-
146-
**Example**:
147-
148-
```csharp
149-
[TestMethod]
150-
[DataRow(1, "test")]
151-
public void MyTestMethod(int number, string text) { ... }
152-
```
153-
154142
### Timeout Settings
155143

156144
In MSTest v3, the handling of `Timeout` settings has been standardized to ensure consistent behavior across different .NET environments. This change may impact tests that rely on specific timeout values, especially if those tests are asynchronous or run under different frameworks.

0 commit comments

Comments
 (0)