Tagged Questions
The nunit-mocks tag has no wiki summary.
6
votes
1answer
1k views
Where is the NUnit.Mocks documentation?
Where is the documentation for NUnit's mocking library, NUnit.Mocks?
I can't find anything in their official documentation or wiki.
5
votes
4answers
389 views
Is there a way to specify ANYTHING as an argument to NUnit Mocks Expect call?
I'm using NUnit mocks and would like to specify that I expect a call but without saying what the arguments will be for example:
mock.ExpectAndReturn("Equals", true, ANY_ARGUMENT);
Obviously filling ...
4
votes
2answers
824 views
How to invoke WPF Dispatcher in Nunit?
I want to test an application which renders a text block with a data field value. I would like to get the actual width and actual height, once the rendering completes. Everything works fine. The ...
3
votes
1answer
90 views
Constructing mocks in unit tests
Is there any way to have a mock constructed instead of a real instance when testing code that calls a constructor?
For example:
public class ClassToTest
{
public void MethodToTest()
{
...
3
votes
4answers
993 views
Has anyone successfully mocked the Socket class in .NET?
I'm trying to mock out the System.net.Sockets.Socket class in C# - I tried using NUnit mocks but it can't mock concrete classes. I also tried using Rhino Mocks but it seemed to use a real version of ...
2
votes
2answers
296 views
Has nUnit got a mocking framework built in and should I use it?
I recall that there is a mocking framework build into nUnit, but I can find details of it on the nUnit web site. Was I dreaming?
I was considering using it to save the pain of having to introduce ...
2
votes
2answers
176 views
Making a DynamicMock MockInstance equal to itself
Trying to use NUnit to test a method that adds an object to a queue, and throws an exception if the object's already been queued, but it fails because Queue.Contains() can't detect that the mock ...
2
votes
1answer
248 views
NUnit with Rhino Mocks exception: Why is it throwing this exception?
I'm getting an exception that really makes no sense to me whatsoever.
I have an Expect call for a method that takes 3 arguments into it: The types are called CallContext, IDal, and List.
NUnit ...
1
vote
1answer
39 views
Can't seem to be able to figure out the first part of this nunit test
Im struggling to understand what going on in the first part of the test.
[Test]
public void Can_Delete_Product()
{
// Arrange: Given a repository containing some product...
**var ...
0
votes
1answer
643 views
Testing events with NUnit mock objects
I'm using NUnit to test my application, which I've included a simplified version of below. I'm looking for a way to fire an event on a mock class, and check that the class under test has received it.
...