gpt4 book ai didi

c# - NUnit 不确定

转载 作者:行者123 更新时间:2023-11-30 20:00:23 24 4
gpt4 key购买 nike

以下琐碎的 TestFixture 给出了不确定的结果。为什么?

[TestFixture]
internal class SomeTest
{
[TestCase]
void myTest()
{
Assert.AreEqual(3,3);
}
}

最佳答案

测试用例方法需要公开(显然):

internal class SomeTest
{
[TestCase]
public void myTest() //works now
{
Assert.AreEqual(3,3);
}
}

关于c# - NUnit 不确定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21241873/

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