Moq : Setup, Verify, Verifiable & Callback explained

Consider the following method which needs to be tested. and one of the unit test of this method mockRepository.Setup(x => x.AddIncomePeriod(It.IsAny<IncomePeriod>())).Returns<IncomePeriod>(x => x).Verifiable(); ‘Setup’ mocks a method and ‘Returns’ specify…

Read more

Docker cheat sheet

Recently I started using docker extensively and found the number of commands you need to have on your tips quite overwhelming. So here is my list of most common commands which…

Read more