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中,有关如何做到的任何想法吗?