gpt4 book ai didi

tdd - 测试接口(interface)有意义吗?

转载 作者:行者123 更新时间:2023-12-04 17:12:46 24 4
gpt4 key购买 nike

我是 TDD 新手,但我不确定为什么要测试接口(interface)?

下面的代码有意义吗?

public interface IInterface
{
int Value { get; }
}


[TestMethod]
public void Test_iinterface_value()
{
var iinterface = mockery.NewMock<IInterface>();
Expect.Once.On(iinterface).GetProperty("Value").Will(Return.Value(10));
Assert.AreEqual(iinterface.Value, 10, "Doh!");
}

最佳答案

除非我弄错了,否则您似乎正在创建一个模拟对象,该对象在被要求时返回给定值。然后你要求值(value)并得到它(惊喜)。我会说编写这样的测试没有意义,除非您正在测试模拟框架本身,或者您希望编译器对您玩一些肮脏的把戏。

关于tdd - 测试接口(interface)有意义吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5893199/

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