NSubstitute is a .NET mocking framework.
I have a solution in which I have a Data project that contains an EF6 .edmx file, generated from an …
c# entity-framework unit-testing dbcontext nsubstituteI am new to NSubstitute, I am trying to mock a void method with 2 out parameters and I am pretty …
c# unit-testing testing mocking nsubstituteI have run into a weird issue while using NSubstitute a few times and although I know how to work …
c# nsubstituteHow I can add test cookie to request so I can test my code from Unit test. Consider a code …
c# asp.net-mvc unit-testing cookies nsubstituteWe are currently in the process of moving from RhinoMocks to NSubstitute. I have a method that takes an object …
c# mocking nsubstituteI use NSubstitute a lot. And I love it. I am just looking into AutoFixture. It seems great! I have …
c# .net autofixture nsubstituteI am using the repository pattern in an MVC 3 application I am currently developing. My repository interface looks as follows: …
c# unit-testing nsubstituteI am new to unit testing and it sounds to me like it should be easy to get NSubstitute to …
c# unit-testing nsubstituteI have a MVC4 web application I'm unit testing right now. It uses entity framework for the database portion. I'm …
c# asp.net-mvc asp.net-mvc-4 unit-testing nsubstituteI use NUnit and NSubstitute for unit testing. I have the following: public interface IDataProvider { void Log(int tvmId, DateTime …
c# mocking nsubstitute