我正在为文本文件生成内容并尝试使用SpecFlow表测试输出。我的Then
语句如下所示:
Then the content should be
| Line |
| This is Line 1 |
| This is Line 2 |
| etc... |
我在Step文件中将其转换为字符串数组,如下所示:
[Then(@"the content should be")]
public void ThenTheContentShouldBe(Table table)
{
string[] expectedLines = table.Rows.Select(x => x.Values.FirstOrDefault()).ToArray();
...
}
这将给我一个包含3个元素的字符串数组,忽略第一个“Line”作为表头。但感觉有点尴尬。有没有更好的方法将其转换为string
数组?奖励点如果它也可以转换为数组不可变类型,如int
等。
答案 0 :(得分:5)
您可以编写自己的扩展程序
public static class MyTableExtenstions
{
public static string[] AsStrings(this Table t, string column)
{
return t.Rows.Select(r => r[column]).ToArray();
}
}
然后
string[] expectedLines = table.AsStrings("Line");