The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
31 views

NMock3 - The type or namespace Foo cannot be found

I am new to Mocking and I have come across the following code from this webpage: http://www.solutionsiq.com/resources/agileiq-blog/bid/76751/Mocking-Frameworks-for-NET using NUnit.Framework; using ...
0
votes
1answer
162 views

NMock and NUnit [duplicate]

What is the difference between NMock and NUnit? I have spent some time Googling this and have found explanations here: http://blog.yeticode.co.uk/2009/05/nunit-and-nmock/ ...
1
vote
1answer
98 views

Getting an NMock expectation to return a new object based on received arguments

NMock3 is my mocking framework of choice, but I'm struggling to make it do what I want. What I need is for a new object to be constructed and returned as part of an expectation, based on some of the ...
5
votes
1answer
242 views

c# how to get a stream processed by httpResponse.BinaryWrite

I have the following method that writes a stream in a HttpResponse object. public HttpResponse ShowPDF(Stream stream) { MemoryStream memoryStream = (MemoryStream) stream; ...
0
votes
0answers
67 views

NMock with Unity framework

I'm trying to write some Unit Tests in my ASP.Net application using NUnit and NMock. I Used MOQ and i wrote a test like below. [Test] public void ExecutePostProcessingAsyncAndFileCountTest() ...
2
votes
2answers
526 views

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 a private field from a large class. The private field gets instantiated in some earlier method and ...
0
votes
2answers
267 views

How to expect an exception and still pass the test?

I have this: Expect.Once.On( someObj ).Method( "SomeMethod" ) .With(1) // correct value is 2, I want this to fail .Will( Throw.Exception( new Exception() ) ); An exception is thrown by ...
0
votes
1answer
195 views

Getting System.TypeLoadException when using NMock with NUnit from command line

I'm trying to run some NUnit tests that use NMock2 for mocking. These tests are to be run from a Makefile as part of our build process. However the tests fail to load. I can get everything working ...
3
votes
2answers
466 views

Unit test with nUnit and nMocks

Bit of a nUnit / nMock / Unit testing noobie question: I am trying to unit test this class. I have created a mock of it because I want to know the value returned from "getCurrencyRates", so that I ...
0
votes
1answer
132 views

Error creating my first Mock object

I'm new to this, so doubtlessly I'm doing something silly. I am trying to create a mock object: mockCurrencyConversion = mocks.NewMock<ICurrencyConversion>(); and getting this error: The ...
0
votes
3answers
238 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 ...
2
votes
1answer
256 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 ...
0
votes
3answers
254 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
329 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
155 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 ...
1
vote
3answers
379 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 ...
2
votes
1answer
439 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 { ...
2
votes
1answer
475 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
2answers
394 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 ...
2
votes
2answers
289 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 ...
1
vote
2answers
1k 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); ...
5
votes
2answers
2k 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
3answers
566 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 = ...
2
votes
2answers
961 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 ...
2
votes
2answers
1k 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.. ...
0
votes
1answer
609 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 ...
1
vote
2answers
743 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
12
votes
4answers
3k 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 ...
0
votes
2answers
338 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()) { ...
5
votes
3answers
2k 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 ...
0
votes
1answer
462 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 ...
1
vote
2answers
876 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
2answers
1k 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 ...
4
votes
2answers
319 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 { ...