6
votes
8answers
161 views
Use of Mocks in Tests
I just started using mock objects (using Java's mockito) in my tests recently. Needless to say, they simplified the set-up part of the tests, and along with Dependency Injection, …
0
votes
1answer
42 views
Google Mock for iPhone development?
I have an interesting situation where I am refactoring a bunch of ObjC iPhone code to create a C++ API. I'm a novice to C++ and looking into C++ mocking frameworks to augment the w …
1
vote
1answer
42 views
Why does my Perl unit test fail in EPIC but work in the debugger?
Has anyone ever experienced a unit test that fails and when they tried to debug it to find out where the failure was occurring, the unit test succeeds when running the code in the …
1
vote
2answers
54 views
Good PHP mock framework
Is there a good standalone mock framework for PHP? Currently I am using Simpletest framework for unit testing. I like the framework, but I dont like how you create and setup a mock …
7
votes
6answers
169 views
What are the real-world pros and cons of each of the major mocking frameworks?
I'm trying to decide on a mocking framework to use on a .NET project I've recently embarked on. I'd like to speed my research on the different frameworks. I've recently read this …
5
votes
9answers
172 views
Why do we need mocking frameworks?
I have worked with code which had NUnit test written. But, I have never worked with mocking frameworks. What are they? I understand dependency injection and how it helps to improve …
2
votes
5answers
103 views
How do I mock an IEnumerable<T> so that I can test a method that receives it
I have a method that I want to test which expects an IEnumerable<T> as a parameter.
I'm currently mocking the contents of the IEnumerable<T> as follows (Using Moq):
…
3
votes
3answers
41 views
RhinoMocks - Stub a Method That Returns a Parameter
I am using RhinoMocks, I need to stub a method, and always have it return the third parameter, regardless of what is passed in:
_service.Stub(x => x.Method(parm1, parm2, parm3) …
5
votes
9answers
148 views
Which objects to mock when doing TDD
When creating methods, should every object instantiated inside that method be passed in as a parameter so that those objects can be mocked in our unit tests?
We have a lot of meth …
2
votes
2answers
93 views
Best practices for unit tests, mock objects, and ioc
Okay so I have been trying to get into IoC lately. However, I keep running into one hurdle - that is the fact that I love using mock objects.
They are quick and painless to setup …
0
votes
2answers
51 views
How to mock .each and .find method in jQuery using Jack?
Hi all:
I'm currently trying to mock the following method using Jack. The code example is as below:
var ID = "id";
$('#' + ID + ' > div > table').each(function) {
var …
0
votes
1answer
36 views
Elegant design of simulating a read-only object
Hi, I am currently developing an GUI to an embedded system. (I am using GUI to descripe my app opposed to interface to avoid confusion with the progamatic meaning)
Context
I have …
1
vote
2answers
48 views
Rhino.Mocks: method calls recorder (a.k.a. test spy)
I have a piece of logic I want to test and it uses dependency injected interface with one (or more) void methods, example:
interface IMyService
{
void MethodA (MyComplexObject …
3
votes
3answers
83 views
Why mock HttpContext if it can be constructed?
Hi,
I have always been faking/mocking/stubbing HttpContext somehow in ASP.NET (much easier in ASP.NET MVC/MonoRail).
But I can see that HttpContext itself can be constructed ea …
1
vote
1answer
41 views
Rhino Mocks constraints and Dictionary parameters
How would you check the parameters on a function that accepts a Dictionary?
IDictionary<string, string> someDictionary = new Dictionary<string, string> {
{"Key1", "V …
