gpt4 book ai didi

c# - 有没有办法使用带有可选参数的 NUnit TestCase 属性

转载 作者:太空狗 更新时间:2023-10-29 21:39:24 26 4
gpt4 key购买 nike

我正在尝试运行一些测试用例,但我需要将其中一个参数设为可选。

我尝试了以下方法,但 NUnit 忽略了测试并打印了以下“已忽略:提供的参数数量错误”

[TestCase(Result = "optional")]
[TestCase("set", Result = "set")]
public string MyTest(string optional = "optional")
{
return optional;
}

是否可以使用可选参数运行测试用例?

最佳答案

在这种情况下只需进行 2 次测试,nunit 不支持可选参数:

[TestCase("set", Result = "set")]
public string MyTest(string optional)
{
return optional;
}

[TestCase(Result = "optional")]
public string MyTest()
{
return MyTest("optional");
}

关于c# - 有没有办法使用带有可选参数的 NUnit TestCase 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22196057/

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