How do you get the iteration / line number from TestContext in data driven tests?

前端 未结 3 1146
一整个雨季
一整个雨季 2021-02-13 12:39

I\'ve implemented a data driven test using MsTest framework.

I was wondering if there was a way to get the iteration / line number of the current test code from the Test

3条回答
  •  清歌不尽
    2021-02-13 13:17

    Try this:

    int currentIteration = TestContext.DataRow.Table.Rows.IndexOf(TestContext.DataRow);
    

提交回复
热议问题