我们如何在 VSTO ContactItem 上设置最小起订量 UserProperties

在 VSTO ContactItem 上使用 Moq 时,我收到以下错误:


variable 'x' of type 'Microsoft.Office.Interop.Outlook.ContactItem' referenced from scope '', but it is not defined 

代码如下:


public class ContactItemTests

{

    private Mock<ContactItem> _contactItemMock;



    [SetUp]

    public void Init()

    {

        _contactItemMock = new Mock<ContactItem>();

    }


    [Test]

    public void MyTest()

    {


        var firstName= _contactItemMock.Setup(x => x.FirstName).Returns("Don");

        var userProperty = _contactItemMock.Setup(x => x.UserProperties.Find("Test",null)).Returns(()=>null);


        Assert.IsTrue(userProperty == null);

    }

我的问题是:


为什么 VS 2017 找不到 UserProperties 属性?



萧十郎
浏览 155回答 1
1回答

阿波罗的战车

UserProperties 是另一个需要设置的对象。
打开App,查看更多内容
随时随地看视频慕课网APP