Skip to content

Commit b9aefab

Browse files
Update docs/core/testing/unit-testing-mstest-migration-from-v1-to-v3.md
Co-authored-by: Youssef Victor <[email protected]>
1 parent 4a8b05d commit b9aefab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ MSTest v3 includes built-in code analyzers for best practices, avoiding configur
201201
[TestMethod]
202202
[Timeout(1000)]
203203
[DataRow(1, "data")]
204-
public void ExampleTestMethod(int number, string data) {
204+
public void ExampleTestMethod(int number, string data)
205+
{
205206
Assert.AreEqual(number, Convert.ToInt32(data));
206207
}
207208
```

0 commit comments

Comments
 (0)