我尝试处理来自不同来源(文本文件)的测试数据,而不是使用[DataSource]
属性。我一直在寻找一种方法来将DataTable
的行添加到TestContext
,这些行是在[MyAttribute]
中创建的,用于处理文本文件。
[MyAttribute]
public void MyTest()
{
// This will be executed with respect to number of rows in TestContext
}
我们可以将我们创建的行设置为TextContext吗?