Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

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. The method creates an async task and executes it so the method returns immediately and ...
5
votes
3answers
862 views

When to Expect and When to Stub?

I use NMock2, and I've drafted the following NMock classes to represent some common mock framework concepts: Expect: this specifies what a mocked method should return and says that the call must ...
4
votes
2answers
261 views

What's a good way to write Unit tests for code with protected objects C# (using NMock, and NUnit framework)

When writeing unit tests for a single class that contains other objects what's the best way to use mock objects to avoid tests dependant on other classes. Example 1: public class MyClass { ...
2
votes
2answers
158 views

Using nMoq, how would one expect for a given Event?

Let's say I want to make a Unit-Test where I have this Tetris game and I want to start the game, do nothing, and wait for the game to be over (this is, to get a GameOver event): Tetris tetris = new ...
2
votes
2answers
848 views

NMock2.0 - how to stub a non interface call?

I have a class API which has full code coverage and uses DI to mock out all the logic in the main class function (Job.Run) which does all the work. I found a bug in production where we werent doing ...
1
vote
1answer
39 views

NMock : redefine method expectation

I'm new to NMock and mocking in general. Is it possible to redefine an expectation ? In fact, I whant to mock an interface with many methods. So I decided to factorize common method expectations not ...
1
vote
3answers
181 views

ambiguous references when mixing NUnit and NMock2 matchers

We're using NUnit (2.5.9) and NMock2 for unit testing and mocking. Both, however, have a matcher syntax that closely corresponds. When I do using NUnit.Framework; using NMock2; And later on the ...
1
vote
1answer
205 views

NMock issue testing against WPF and Dispatcher

Here's one for the threading junkies out there. I've got this method: public void RefreshMelts() { MeltsAvailable.Clear(); ThreadPool.QueueUserWorkItem(delegate { ...
1
vote
2answers
743 views

How to assert a private method on concrete class is called (TypeMock/NMock/etc..)?

I am trying to write a unit test for the 'IsUnique' function in the class below that looks like this: class Foo { public bool IsUnique(params...) { ValidateStuffExists(params); ...
1
vote
1answer
639 views

Differences between NMock 2.0 and NMock2

I am a bit confused over which version of NMock2 I should use. The one I've been using for a while I got from here: http://www.nmock.org/download.html The filename is NMock2.dll with version ...
1
vote
2answers
485 views

NMock - how to say expect 'any value' on these params? Or should I not do this?

I have a quick question that I could not figure out in the docs about NMock2.0. I have a function called Save() that I want to mock out. This takes a string ID as parameter and a decimal as value.. ...
1
vote
2answers
463 views

Basic NMock database examples for CRUD application

I'm looking for some basic examples of using NMock2 to mock database calls for a CRUD application. Thanks, Chris
1
vote
2answers
742 views

C# Noob - Triggering event in mocked interface class - How does this code work?

I'm a little confused at what's going on here. I'm looking at the Puzzle example from Atomic Object showing how to test a Model-View-Presenter pattern Puzzle.zip The View has a private event. The ...
0
votes
3answers
62 views

Creating mock objects

I created simple GUI in WPF. I would like to show there some data got from database. But for now I have only GUI and few functions that do simple calculations on received data. I know that my goal is ...
0
votes
3answers
70 views

Using Mock objects with Dictionary

I just started working with Unit Testing with NMock I one my test cases involve adding an entry in a dictionary which is then passed to the unit being tested. I define the map as: var item = new ...
0
votes
1answer
95 views

NUnit and NMock- ExpectAndReturn - How to tell NMock to expect CreateObjectSet<T>

I have the following var objSet = new DynamicMock(typeof(IObjectSet<Nationality>)); objSet.ExpectAndReturn("GetAll", new List<Nationality> { new Nationality { //obj init here }, ...
0
votes
1answer
72 views

Conditional mocking using NMock

i wonder if someone is able to help me with my problem. I have to stub a method which is able to perform conditional mocking. In short, i like the stub function to return different objects of the same ...
0
votes
1answer
193 views

NMock - How to make a method with same argument types return different values?

I've a method like this: public string MyMethod(string a, string b) { if(a == "abcd" && b == "xyz") return "good"; if(a == "xyz" && b == "something") return "even ...
0
votes
1answer
180 views

How can I mock an internal interface using NMock2?

If I try this, I just get an exception: System.TypeLoadException : Access is denied: 'Namespace.IInternalInterface'. Making the interface public is not an acceptable solution. I don't want to ...
0
votes
1answer
397 views

Mocking help?I can't find what's the problem

I have an interface definded like this: public interface IDatabase{ void Get<TTypeToFetch> ();} and when I try to do: Mockery mockery = new Mockery(); IDatabase db = ...
0
votes
1answer
382 views

NMock Problem with Lists

I have the following test using NMock which fails. It used to work when the result from the service call was passed to the view but it now fails since the results are converted to dto's. I think this ...
0
votes
2answers
241 views

How to mock GetType() method in NMock

I have some production code like private bool IsTypeEqual(object theFirstObject, object theSecondObject) { if(theFirstObject.GetType()==theSecondObject.GetType()) { ...
0
votes
1answer
353 views

Using NMock with ByRef parameters

I have to work with an API that uses a lot of by-reference parameters. I'm just beginning to use NMock, and I'm having trouble seeing how to make NMock actually modify one of those by-ref parameters ...
0
votes
2answers
912 views

Unable to use nMock GetProperty routine on a property of an inherited object

I am getting this error when trying to set an expectation on an object I mocked that inherits from MembershipUser: ContactRepositoryTests.UpdateTest : FailedSystem.InvalidProgramException: JIT ...