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
loggerMock.Verify(logger =>logger.WriteInformation("Updated {0} documents",1),"Informational message should indicate how many documents were updated.");
loggerMock.Verify(logger =>logger.WriteInformation("Updated {0} documents",2),Times.Exactly(2),"Informational message should indicate how many documents were updated.");
119
+
loggerMock.Verify(logger =>logger.WriteInformation("Updated {0} documents",1),Times.Once,"Informational message should indicate how many documents were updated.");
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
mockLogger.Verify(logger =>logger.WriteInformation("{0}: Up migration started",typeof(First_Migration).Name),Times.AtLeastOnce,"Informational message should indicate Up migration started.");
305
+
mockLogger.Verify(logger =>logger.WriteInformation("{0}: Up migration completed",typeof(First_Migration).Name),Times.AtLeastOnce,"Informational message should indicate Up migration started.");
mockLogger.Verify(logger =>logger.WriteInformation("{0}: Down migration started",typeof(First_Migration).Name),Times.AtLeastOnce,"Informational message should indicate Up migration started.");
331
+
mockLogger.Verify(logger =>logger.WriteInformation("{0}: Down migration completed",typeof(First_Migration).Name),Times.AtLeastOnce,"Informational message should indicate Up migration started.");
0 commit comments