本文介绍了在数据驱动的测试中,如何从TestContext获取迭代/行号?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用MsTest框架实现了数据驱动的测试.

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

我想知道是否有办法从TestContext对象获取当前测试代码的迭代/行号?

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

据我所知,与DDT相关的唯一属性是DataRow,它可以从数据源获取当前迭代的信息,但是我看不到任何可以满足我需要的属性.

As far as I can see, the only property relevant to DDT is DataRow that enables getting info for the current iteration from the data source, but I don't see any property that gives me what I need.

推荐答案

尝试一下:

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

这篇关于在数据驱动的测试中,如何从TestContext获取迭代/行号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 12:40