Tom*_*kel 3 c# unit-testing mstest moq visual-studio
我有一个moq的单元测试,其中我得到一个错误,我需要做一个设置,我看到的例子,但一切都是如此不同,我想做一个适当的moq设置
错误:"模拟上的预期调用至少一次,但从未执行过:called => called.SetWidgetResponseResponseData("searchType",It.IsAny())没有配置任何设置."
所有这3个测试都失败了
[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>()));
}
Run Code Online (Sandbox Code Playgroud)
我认为错误是因为"res"需要使用设置权限的moq进行模拟?
if (res != null && res.Count > 0)
{
View.SetWidgetResponseResponseData("recCount", res.Count.ToString());
View.SetWidgetResponseResponseData("searchType", provFacSearchCrt.SearchType);
View.SetWidgetResponseResponseData("isGEOSearch", provFacSearchCrt.IsGeoSearch);
}
Run Code Online (Sandbox Code Playgroud)
更新
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);
}
}
Run Code Online (Sandbox Code Playgroud)
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();
}
Run Code Online (Sandbox Code Playgroud)
好的,我修好了.我添加了这样的安装程序:
this.prvFacServiceMgr.Setup(call => call.SearchProviderFacility(It.IsAny<ProviderFacilitySearchCriteria>())).Returns(new List<ProviderFacilitySearchResult>()
{
new ProviderFacilitySearchResult()
{
ProviderName="TestProvider"
}
});
Run Code Online (Sandbox Code Playgroud)