You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moq.VerifyNavigationException
Verification failed
Expected invocation on the mock at least once, but was never performed: nav => nav.CreateBuilder().AddParameter("SelectedLogbooks", new List<Logbook>() { { new Logbook() { Id= 27, Name= "F2 Chronolog", Enabled= True, Type= LogbookType.Chronological } } }).AddParameter("DownloadSource", (object)DownloadSource.Settings).AddSegment<DownloadLogbookViewModel>().NavigateAsync()
If I remove the .AddParameter(ParameterConstants.SelectedLogbooks, new List<Logbook>()... code from both sides the verification succeeds. This looks like the verify expression for the list isn't working.
The text was updated successfully, but these errors were encountered:
I've found the following navigation action could not be verified:
Given the above example, I would expect the following expression should be able to verify the navigation:
Instead we see a moq exception:
If I remove the
.AddParameter(ParameterConstants.SelectedLogbooks, new List<Logbook>()...
code from both sides the verification succeeds. This looks like the verify expression for the list isn't working.The text was updated successfully, but these errors were encountered: