1 回答

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超4個(gè)贊
List<string>下面是如何從 NSubstitute 模擬的對(duì)象返回 a 的示例:
using System.Collections.Generic;
using NSubstitute;
using Xunit;
public interface ISomeType {
? ? List<string> MyFunction();
}
public class SampleFixture {
? ? [Fact]
? ? public void ReturnList() {
? ? ? ? var _mockedObject = Substitute.For<ISomeType>();
? ? ? ? var myList = new List<string> { "hello", "world" };
? ? ? ? _mockedObject.MyFunction().Returns(myList);
? ? ? ? // Checking MyFunction() now stubbed correctly:
? ? ? ? Assert.Equal(new List<string> { "hello", "world" }, _mockedObject.MyFunction());
? ? }
}
您所描述的錯(cuò)誤聽(tīng)起來(lái)像是涉及不同類型。
- 1 回答
- 0 關(guān)注
- 129 瀏覽
添加回答
舉報(bào)