如何将Azure docuement Client Assembly的moq对象注入业务逻辑?

时间:2016-11-14 13:52:27

标签: unit-testing azure moq

BusinessLogic项目 - >正在使用Microsoft.Azure.Documents.Client

在我的单元测试中,我创建了一个模拟

        var documentClient = new Mock<IDocumentClient>();

        documentClient.Setup(x => x.ReadDatabaseAsync(It.IsAny<Uri>(), null)).Throws(CreateDocumentClientExceptionForTesting(new Error(), HttpStatusCode.NotFound));

现在我必须从单元测试项目中将documentClient注入到BusinessLogic中,有关如何做到的任何想法吗?

0 个答案:

没有答案