gpt4 book ai didi

unit-testing - 使用最小起订量的奇怪行为

转载 作者:行者123 更新时间:2023-12-02 04:54:33 27 4
gpt4 key购买 nike

我在单元测试中使用最小起订量遇到了一些奇怪的行为:

给出以下测试:

[Fact]
public void ShoppingCart_ShouldIncrementQuantity_WhenAddingDuplicateItem()
{
var cart = new ShoppingCart();

var item1 = GetMockItem("Test");
var item2 = GetMockItem("Test", quantity: 2);

cart.AddItem(item1.Object);
cart.AddItem(item2.Object);

cart.Items.Single(x => x.Sku == "Test").Quantity
.Should().Be(3);
}

private Mock<IShoppingCartItem> GetMockItem(string sku, decimal price = 10, int quantity = 1)
{
var mock = new Mock<IShoppingCartItem>();
mock.Setup(x => x.Sku).Returns(sku);
mock.Setup(x => x.Price).Returns(price);
mock.Setup(x => x.Quantity).Returns(quantity);

return mock;
}

这是被测代码:

public void AddItem(IShoppingCartItem item)
{
Enforce.ArgumentNotNull(item, "item");

var existingItem = this.Items.SingleOrDefault(x => x.Sku == item.Sku);

if (existingItem != null)
{
existingItem.Quantity += item.Quantity;
}
else
{
this.Items.Add(item);
}
}

我得到这个结果:测试 'Titan.Tests.ShoppingCartTests.ShoppingCart_ShouldIncrementQuantity_WhenAddingDuplicateItem' 失败:预期 3,但找到 1。

我很困惑,或者我只是有一个愚蠢的时刻!

最佳答案

这里的问题是您没有告诉 Moq 在设置 Quantity 属性时要做什么。默认情况下,Moq 不仅仅假设您的所有属性都应该是简单的 getter/setter。由您决定如何处理它们。

您有几个选择。

使用 SetupAllProperties() 告诉 Moq 将属性视为简单的 getter/setter。

  private Mock<IShoppingCartItem> GetMockItem(string sku, decimal price = 10, int quantity = 1)
{
var mock = new Mock<IShoppingCartItem>();
mock.SetupAllProperties();

// Set the properties like normal properties. Moq will do the right thing.
mock.Object.Sku = sku;
mock.Object.Price = price;
mock.Object.Quantity = quantity;
return mock;
}

使用 SetupSet 处理设置 Quantity 属性的情况,并在其回调中重新设置属性 getter,以便返回新值。

  private Mock<IShoppingCartItem> GetMockItem(string sku, decimal price = 10, int quantity = 1)
{
var mock = new Mock<IShoppingCartItem>();
mock.Setup(x => x.Sku).Returns(sku);
mock.Setup(x => x.Price).Returns(price);
mock.Setup(x => x.Quantity).Returns(quantity);

// You can call Setups from within Setups
mock.SetupSet(x => x.Quantity).Callback(q => mock.Setup(x => x.Quantity).Returns(q));
return mock;
}

或者,您也可以更改您的设计,这样您就不会修改公共(public)属性。

关于unit-testing - 使用最小起订量的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18240657/

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