1
vote
5answers
102 views
Why use a mocking framework instead of hand-rolling our mocks?
Currently I'm reading a book (Pro ASP.Net Framework).
In this book, the author suggests to use a Moq framework to help to do TDD.
[Test]
public void List_Presents_Correct_Page_Of_Products()
{
…
1
vote
1answer
7 views
How to stub abstract collection with Moq?
Let's say I have this class:
public abstract class CustomerCollectionBase : Collection<Customer>{}
One of my classes under test accepts CustomerCollectionBase instance (it will be some …
0
votes
1answer
27 views
Using Groovy MetaClass to overwrite Methods
I have a POJO that uses a service to do something:
public class PlainOldJavaObject {
private IService service;
public String publicMethod(String x) {
return doCallService(x);
}
public String …
0
votes
2answers
26 views
Mocking - setting a property before calling the constructor
In RhinoMocks or Moq, can properties on an object be set before the constructor is called?
I'm trying to test a method.
The class containing the method has some code in it's constructor which …
1
vote
1answer
29 views
Testing the internals of a method with RhinoMock or Moq
Quite new to this mocking thing, I have a couple of questions.
Correct me if I'm wrong:
Mocking does not initialize the real method i.e. Mocking will not actually call the constructor of your class. …
0
votes
2answers
39 views
Training Videos on Mocking
Can anyone point out any useful training videos on introduction to Mocking?
Thanks
3
votes
1answer
44 views
“Self-mocking” using Rhino Mocks
I have a situation I've run into several times but have never found a good answer for. Suppose I have a class like the following, where one method calls another in the same class:
public class Foo
{
…
0
votes
4answers
90 views
Should you only mock types you own?
I read through this blog entry by Mark Needham and would like to know if this is best practice or not?
Please not that he is not against mocking, but against mocking directly - he does say that …
0
votes
5answers
68 views
mocking LINQ to SQL
What is the best and easiest way to unit test a Class that uses LINQ to SQL and returns back a decimal, is it by Mocking? If so how do I go about this?
2
votes
1answer
15 views
Mocking Web Service Response | Bundle couple of them in a web app
Hi
I am working in an enterprise project and my team is responsible for creating front end of the application and there is another team developing webservices and has provided WSDL for all the …
0
votes
2answers
26 views
Mock an out paramter with moq or rhino mock or something else
I tried with NMock2 but I get TypeLoadExceptions when trying to pass the mocks into the constructor, also I saw TypeMock can do that but it costs 80$
2
votes
3answers
89 views
Is Typemock the only framework that can mock a Linq To SQL Table class?
I am trying to setup unit tests for my Linq To SQL code. My code uses the System.Data.Linq.Table class (generated by the designer).
Because this class is sealed and the constructor is internal it is …
1
vote
0answers
15 views
Testing internal/closed/sealed System.Data bits. TypeMock or Decorators or xxxxxx?
I'm writing some code that integrates pretty tightly with lots of internal and sealed classes inside of System.Data ( like DbDataRecord and ObjectStateEntry ) for an EntityFramework project I'm …
2
votes
6answers
174 views
Need ideas for a TDD Approach
We have just released a re-written(for the 3rd time) module for our proprietary system. This module, which we call the Load Manager, is by far the most complicated of all the modules in our system to …
0
votes
2answers
44 views
Mocking Framework with C# 4.0 Support?
Anybody know of a mocking framework that supports C# 4.0? Doesn't matter which one ATM, just need something that will work.
