Top "Nmock" questions

NMock is a mocking framework for .NET 3.5 and 4.0. It supports lambda expressions for member matching.

Mocking a private field

I know a similar question has been asked but I have not found a clear solution. I'm trying to mock …

c# unit-testing moq rhino-mocks nmock
Is there a way to unit test an async method?

I am using Xunit and NMock on .NET platform. I am testing a presentation model where a method is asynchronous. …

.net unit-testing xunit.net nmock
Test a public method which calls a private method using NUnit

I have a public method in a class that internally calls a particular private method within that class. It looks …

c# unit-testing nunit private-members nmock