Tagged Questions
Mocking and faking are ways to isolate code under test to ensure that unit tests run against a unit of code only and no other parts of an application. Mocking differs from faking in that a mock can be inspected to assert the results of a test.
202
votes
17answers
34k views
What C# mocking framework to use?
I want to start using mock objects on my next C# project.
After a quick Google search I've found there are many:
NMock
EasyMock.NET
TypeMock Isolator Commercial / Paid
Rhino Mocks
Moq
...
143
votes
17answers
34k views
What's the best mock framework for Java? [closed]
What's the best framework for creating mock objects in Java? Why? What are the pros and cons of each framework?
56
votes
4answers
4k views
What's the best strategy for unit-testing database-driven applications?
I work with a lot of web applications that are driven by databases of varying complexity on the backend. Typically, there's an ORM layer separate from the business and presentation logic. This makes ...
56
votes
18answers
12k views
Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?
Which one do you use (if you use the listed ones) and what do you love and even hate about it?
40
votes
12answers
2k views
How do you unit test the real world?
I'm primarily a C++ coder, and thus far, have managed without really writing tests for all of my code. I've decided this is a Bad Idea(tm), after adding new features that subtly broke old features, ...
34
votes
3answers
4k views
Using IoC for Unit Testing
How can a IoC Container be used for unit testing? Is it useful to manage mocks in a huge solution (50+ projects) using IoC? Any experiences? Any C# libraries that work well for using it in unit tests?
...
32
votes
7answers
550 views
The value of high level unit tests and mock objects
I am beginning to believe that unit testing high level, well-written code, which requires extensive use of mock objects, has little to no value. I am wondering if this assertion is correct, or am I ...
32
votes
6answers
4k views
What are the capabilities of Moq and Rhino.mocks?
I cannot find a specific feature-by-feature comparison of Moq and Rhino. All the questions are "which do you like better and why", or "here's how you do a simple mock in rhino and how it's done in ...
32
votes
6answers
4k views
What is your favorite Python mocking library?
What is your single favorite mocking library for Python?
30
votes
8answers
11k views
Mocking Asp.net-mvc Controller Context
So the controller context depends on some asp.net internals. What are some ways to cleanly mock these up for unit tests? Seems like its very easy to clog up tests with tons of setup when I only need, ...
27
votes
2answers
4k views
Unit testing with EF4 “Code First” and Repository
I am attempting to get a handle on Unit testing a very simple ASP.NET MVC test app I've built using the Code First approach in the latest EF4 CTP. I'm not very experience with Unit testing / mocking ...
27
votes
5answers
6k views
How to mock the Request on Controller in ASP.Net MVC?
I have a controller in C# using the ASP.Net MVC framework
public class HomeController:Controller{
public ActionResult Index()
{
if (Request.IsAjaxRequest())
{
//do some ...
26
votes
6answers
8k views
Mocking Static methods using Rhino.Mocks
Is it possible to mock a static method using Rhino.Mocks ?
if Rhino does not support this.. Is there a pattern or something which would let me accomplish the same ?
26
votes
15answers
4k views
What are some JavaScript Unit Testing and Mocking Frameworks you have used?
My main JavaScript framework is jQuery so I would like my unit test and mocking frameworks to be compatible with that. I'd rather not have to introduce another JavaScript framework.
I am currently ...
26
votes
6answers
7k views
ASP/NET MVC: Test Controllers w/Sessions? Mocking?
I read some of the answers on here re: testing views and controllers, and mocking, but I still can't figure out how to test an ASP.NET MVC controller that reads and sets Session values (or any other ...
26
votes
6answers
1k views
Is it feasible to introduce Test Driven Development (TDD) in a mature project?
Say we have realized a value of TDD too late. Project is already matured, good deal of customers started using it.
Say automated testing used are mostly functional/system testing and there is a good ...
26
votes
13answers
1k views
Random data in Unit Tests?
I have a coworker who writes unit tests for objects which fill their fields with random data. His reason is that it gives a wider range of testing, since it will test a lot of different values, ...
25
votes
2answers
2k views
What is your favorite Delphi mocking library?
I want to start using mock objects on my Delphi projects.
After a quick google I've found those:
Delphi Mock Wizard
PascalMock
So my question is what one is your favourite and why?
24
votes
6answers
5k views
Are there any good C++ Mock object frameworks?
Does anyone have any experience with Mock Object frameworks in C++? I haven't been able to find much. It appears Google will be open sourcing theirs soon, so I guess it may be best to wait for that, ...
23
votes
10answers
4k views
How do you mock out the file system in C# for unit testing?
Are there any libraries or methods to mock out the file system in C# to write unit tests? In my current case I have methods that check whether certain file exists and read the creation date. I may ...
23
votes
5answers
5k views
How do I use Moq to mock an extension method?
I am writing a test that depends on the results of an extension method but I don't want a future failure of that extension method to ever break this test. Mocking that result seemed the obvious choice ...
22
votes
9answers
1k views
How are Mocks meant to be used?
When I originally was introduced to Mocks I felt the primary purpose was to mock up objects that come from external sources of data. This way I did not have to maintain an automated unit testing test ...
21
votes
5answers
7k views
How do I mock the HttpContext in ASP.NET MVC using Moq?
[TestMethod]
public void Home_Message_Display_Unknown_User_when_coockie_does_not_exist()
{
var context = new Mock<HttpContextBase>();
var request = new Mock<HttpRequestBase>();
...
21
votes
6answers
3k views
What should I consider when choosing a mocking framework for .Net
There are lots of mocking frameworks out there for .Net some of them have been superseded by others that are better in everyway. However that still leaves many mocking frameworks that have different ...
21
votes
8answers
5k views
How do you mock a Sealed class?
Mocking sealed classes can be quite a pain. I currently favor an Adapter pattern to handle this, but something about just keeps feels weird.
So, What is the best way you mock sealed classes?
...
20
votes
2answers
3k views
Is Google Mock a good mocking framework?
I am pioneering unit testing efforts at my company, and need need to choose a mocking framework to use. I have never used a mocking framework before. We have already chosen Google Test, so using ...
19
votes
9answers
984 views
What is the purpose of mock objects?
I am new to unit testing, and I continously hear the words 'mock objects' thrown around a lot. In layman's terms, can someone explain what mock objects are, and what they are typically used for when ...
19
votes
10answers
3k views
Why do I need a mocking framework for my unittests?
Recently there has been quite some hype around all the different mocking frameworks in the .NET world. I still haven't quite grasped what is so great about them. It doesn't seem to be to hard to write ...
19
votes
6answers
6k views
How can one mock/stub python module like urllib
I need to test a function that needs to query a page on an external server using urllib.urlopen (it also uses urllib.urlencode). The server could be down, the page could change; I can't rely on it for ...
18
votes
6answers
5k views
How can I get PHPUnit MockObjects to return differernt values based on a parameter?
I've got a PHPUnit mock object that returns "return value" no matter what its arguments:
// From inside a test...
$mock = $this->getMock('myObject', 'methodToMock');
...
18
votes
9answers
1k views
What is Object Mocking and when do I need it?
Many people use Mock Objects when they are writing unit tests. What is a Mock Object? Why would I ever need one? Do I need a Mock Object Framework?
17
votes
12answers
22k views
Android mock location on device?
How can I mock my location on a physical device (Nexus One)? I know you can do this with the emulator in the Emulator Control panel, but this doesn't work for a physical device.
17
votes
4answers
3k views
Django: How to create a model dynamically just for testing
I have a Django app that requires a settings attribute in the form of:
RELATED_MODELS = ('appname1.modelname1.attribute1',
'appname1.modelname2.attribute2',
...
17
votes
6answers
894 views
ASP.NET How to best create a test DB when doing TDD?
what's the best practice for creating test persistence layers when doing an ASP.NET site (eg. ASP.NET MVC site)?
Many examples I've seen use Moq (or another mocking framework) in the unit test ...
17
votes
6answers
971 views
When should I mock?
I have a basic understanding of mock and fake objects, but I'm not sure I have a feeling about when/where to use mocking - especially as it would apply to this scenario here.
16
votes
7answers
963 views
Why Create Mock Objects?
During a recent interview I was asked why one would want to create mock objects. My answer went something like, "Take a database--if you're writing test code, you may not want that test hooked up live ...
16
votes
6answers
721 views
Exercises to enforce good practices such as TDD and Mocking
I'm looking for resources that provide an actual lesson plan or path to encourage and reinforce programming practices such as TDD and mocking. There are plenty of resources that show examples, but ...
16
votes
4answers
22k views
EasyMock: Void Methods
I have a method that returns void in a class that is a dependency of the class I want to test.
This class is huge and I'm only using this single method from it.
I need to replace the implementation ...
16
votes
10answers
12k views
Unit test HttpContext.Current.Cache or other server-side methods in C#?
When creating a unit test for a class that uses the HttpContext.Current.Cache class, I get an error when using NUnit. The functionality is basic - check if an item is in the cache, and if not, create ...
16
votes
3answers
9k views
Rhino Mocks - Stub .Expect vs .AssertWasCalled
Disclosure: I am a Rhino Mocks n00b!
OK, I know there has been a lot of confusion over the new AAA syntax in Rhino Mocks, but I have to be honest, from what I have seen so far, I like. It reads ...
16
votes
5answers
2k views
What is a mock and when should you use it?
I just read the Wikipedia article on mock objects, but I'm still not entirely clear on their purpose. It appears they are objects that are created by a test framework when the actual object would be ...
15
votes
4answers
2k views
15
votes
4answers
2k views
Mocking Extension Methods with Moq
I have a preexisting Interface...
public interface ISomeInterface
{
void SomeMethod();
}
and I've extended this intreface using a mixin...
public static class SomeInterfaceExtensions
{
...
15
votes
1answer
7k views
Using Mockito's generic “any()” method
I have an interface with a method that expects an array of Foo:
public interface IBar {
void DoStuff(Foo[] arr);
}
I am mocking this interface using Mockito, and I'd like to assert that DoStuff() ...
15
votes
7answers
997 views
Why is it so bad to mock classes?
I recently discussed with a colleague about mocking. He said that mocking classes is very bad and should not be done, only in few cases.
He says that only interfaces should be mocked, otherwise it's ...
15
votes
4answers
5k views
Moq: unit testing a method relying on HttpContext
Consider a method in a .NET assembly:
public static string GetSecurityContextUserName()
{
//extract the username from request
string sUser = ...
15
votes
7answers
6k views
Using Mockito to test abstract classes
I'd like to test an abstract class. Sure, I can manually write a mock that inherits from the class.
Can I do this using a mocking framework (I'm using Mockito) instead of hand-crafting my mock? How?
15
votes
1answer
3k views
What are the differences between mocks and stubs on Rhino Mocks?
I haven't play enough with this and usually use mocks, but I wonder what are the differences between this two and when to use one or the other on Rhino Mocks.
Update:
I also found the answer to my ...
15
votes
1answer
2k views
How can I unit test my ASP.NET MVC controller that uses FormsAuthentication?
I'm working with a ASP.NET MVC solution in a test driven manner and I want to login a user to my application using forms authentication. The code I would like to end up with in the controller looks ...
15
votes
6answers
2k views
Mocking vs. Test DB?
Earlier I asked this question How to correctly unit test my DAL?, one thing left unanswered for me is if to really test my DAL is to have a Test DB, then what is the role of mocking vs. a testing DB?
...