没有设置配置错误,如何快速正确添加设置
本文关键字:设置 何快速 添加 配置 错误 | 更新日期: 2023-09-27 18:16:36
我有一个与moq的单元测试,其中我得到一个错误,我需要做一个设置,我确实看到的例子,但一切都是如此不同,我想做一个适当的moq设置
错误:"对模拟的预期调用至少一次,但从未执行:called => called。SetWidgetResponseResponseData("searchType It.IsAny ())没有配置任何设置。"
这三个测试都失败
[TestMethod]
public void it_should_call_set_response_response_data_on_the_view_reccount()
{
view.Verify(called => called.SetWidgetResponseResponseData("recCount",It.IsAny<string>()));
}
[TestMethod]
public void it_should_call_set_response_response_data_on_the_view_searchtype()
{
view.Verify(called => called.SetWidgetResponseResponseData("searchType", It.IsAny<string>()));
}
[TestMethod]
public void it_should_call_set_response_response_data_on_the_view_isgeosearch()
{
view.Verify(called => called.SetWidgetResponseResponseData("isGEOSearch", It.IsAny<bool>()));
}
我认为这个错误是因为"res"需要用moq来模拟设置对吗?
if (res != null && res.Count > 0)
{
View.SetWidgetResponseResponseData("recCount", res.Count.ToString());
View.SetWidgetResponseResponseData("searchType", provFacSearchCrt.SearchType);
View.SetWidgetResponseResponseData("isGEOSearch", provFacSearchCrt.IsGeoSearch);
}
更新 public abstract class ProviderSearchPresenterContext : Specification<Tc.Cbc.Presentation.ProviderSearchPresenter>
{
protected Mock<ICESBaseWidgetView> view = new Mock<ICESBaseWidgetView>();
protected Mock<ILookupServiceManager> lookupService = new Mock<ILookupServiceManager>(MockBehavior.Loose);
protected Mock<ICAPProviderService> capProvider = new Mock<ICAPProviderService>(MockBehavior.Loose);
protected Mock<IProviderFacilityServiceManager> prvFacServiceMgr = new Mock<IProviderFacilityServiceManager>(MockBehavior.Loose);
//protected Mock<ProviderFacilitySearchCriteria> provFacSearchCrt = new Mock<ProviderFacilitySearchCriteria>(MockBehavior.Loose);
protected Mock<ICESTraceManager> traceManager = new Mock<ICESTraceManager>();
protected Mock<ILogger> logger = new Mock<ILogger>();
protected Mock<IResourcesHelper> resources = new Mock<IResourcesHelper>();
protected Mock<IUserContext> userContext = new Mock<IUserContext>();
protected NameValueCollection QueryString = new NameValueCollection();
protected NameValueCollection Form = new NameValueCollection();
protected Dictionary<string, string> MethodArguments = new Dictionary<string, string>();
protected override Tc.CES.Presentation.ProviderSearchPresenter construct()
{
//capProvider.Setup(x => x.GetProvider(It.Is<GetProviderReqMsg>(y => y.GetProvider.ProviderSystemIDs[0].SystemIDName == CESConstants.PROVIDER_ID
// && y.GetProvider.ProviderSystemIDs[0].SystemIDValue == CESConstants.TZCOMMON))).Returns(new GetProviderRespMsg {
var presenter = new Tc.CES.Presentation.ProviderSearchPresenter(view.Object, traceManager.Object, logger.Object, resources.Object,
userContext.Object, lookupService.Object, capProvider.Object, prvFacServiceMgr.Object);
presenter.QueryString = QueryString;
presenter.Form = Form;
presenter.MethodArguments = MethodArguments;
return presenter;
}
protected override void given() { }
protected override void when()
{
QueryString["ProFacSearch"] = "FACILITY";
sut.ShowProviderSearch(null, null);
}
}
Specification类看起来像这样:
[TestClass]
public abstract class Specification<SUT>
{
protected SUT sut;
[TestInitialize]
public void Initialize()
{
sut = construct();
given();
when();
}
protected abstract SUT construct();
protected abstract void given();
protected abstract void when();
}
好的,我修好了。我添加了如下设置:
this.prvFacServiceMgr.Setup(call => call.SearchProviderFacility(It.IsAny<ProviderFacilitySearchCriteria>())).Returns(new List<ProviderFacilitySearchResult>()
{
new ProviderFacilitySearchResult()
{
ProviderName="TestProvider"
}
});