gpt4 book ai didi

c# - MSTest 相当于 NUnit 的参数化测试吗?

转载 作者:行者123 更新时间:2023-12-03 06:13:54 25 4
gpt4 key购买 nike

NUnit 支持一项功能,您可以为要多次运行的单元测试指定一组数据输入。

[RowTest]
[Row(1001,1,2,3)]
[Row(1,1001,2,3)]
[Row(1,2,1001,3)]
public void SumTests(int x, int y, int z, int expected)
{
...
}

使用 MSTest 完成此类任务的最佳方法是什么?我找不到类似的属性集。

最佳答案

对于那些使用 MSTest2 的用户,DataRow + DataTestMethod 可以准确地执行此操作:

[DataRow(Enum.Item1, "Name1", 123)]
[DataRow(Enum.Item2, "Name2", 123)]
[DataRow(Enum.Item3, "Name3", 456)]
[DataTestMethod]
public void FooTest(EnumType item, string name, string number)
{
var response = ExecuteYourCode(item, name, number);

Assert.AreEqual(item, response.item);
}

更多关于 here

关于c# - MSTest 相当于 NUnit 的参数化测试吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2367033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com