0
votes
2answers
32 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 …
1
vote
2answers
25 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 …
0
votes
1answer
19 views
How to mock abstract class with static members in Grails?
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined. The problem is that MockFor and StubFor don’t give you an option for adding static …
5
votes
8answers
107 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 …
1
vote
1answer
34 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 …
3
votes
3answers
63 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 …
0
votes
0answers
29 views
How to mock .find method in jQuery?
Hi all:
I'm currently trying to mock the jQuery .find method using Jack. The code example is as below:
$('#' + ID).find('div[id$=Nodes]').each(function() {
.
.
.
});
How shoul …
1
vote
2answers
53 views
Rhino Mocks - Stub a Singleton
I have a Singleton that is accessed in my class via a static property like this:OtherClassNotBeingTested.Instance.SomeInstanceMethod()
I would like to test my class with out makin …
1
vote
3answers
62 views
Moq - How to verify that a property value is set via the setter
Consider this class:
public class Cotent
{
public virtual bool IsCheckedOut {get; private set;}
public virtual void CheckOut()
{
IsCheckedOut = true;
}
publi …
2
votes
2answers
75 views
Is there any free mocking framework that can mock static methods and sealed classes?
Typemock can do this but it is $799USD and that is a lot to pay for two features.
Please no conversations about avoiding using static and sealed things or encapsulating them.
Whe …
0
votes
2answers
33 views
Unit Testing HtmlHelper that Needs to Access Data Layer
I am trying to create a unit test for an HtmlHelper that accesses my data layer to get a string. I have looked at a lot of posts around this and I am probably missing something. …
0
votes
3answers
84 views
TDD, Mocking, dependency injection and the DRY principle
I've got a controller class which accpets multiple parameters in the ctor which gets injected at runtime.
Example:
public ProductController(IProductRepositort productReposito …
0
votes
2answers
25 views
Unittesting Corba in Python.
Hi there,
I am interested in your opinions on unittesting code that uses Corba to communicate with a server.
Would you mock the Corba objects? In Python that's sort of a pain in …
0
votes
4answers
55 views
Mock object and Spring annotations
I am using Spring annotations in my code to do the DI. So lets say I have a class class1 that depends on another class class2, I define class1 as below:
@Component
public class cl …
1
vote
4answers
78 views
Mock system call in ruby
Know of a way to mock %[]? I'm writing tests for code that makes a few system calls, for example:
def log(file)
%x[git log #{file}]
end
and would like to avoid actually execut …
