Tagged Questions
The partial-mocks tag has no wiki summary.
4
votes
1answer
366 views
Partial Mocking As Code Smell?
Why is there so much hating going on about 'partial mocking' and the code that requires it?
Here's an (theoretical) example implementation:
public ComplexResult1 operationA(Stimulus a) {
{
...
1
vote
2answers
191 views
Why is my RhinoMocks PartialMock method call not being mocked?
I'm creating a partial mock to test a protected helper method of a base class. I'm not too interested in the debate on whether or not the protected method should be there or if it should be an ...
1
vote
2answers
937 views
Unit-testing with mockito (partial mocking)
I have a problem with Mockito.
Is it possible to do such a thing:
ClassX x = mock(ClassX.class)
when(x.methodB()).thenReturn("toto");
String result = x.methodA();
I'm working with Mockito 1.7.
I ...
1
vote
1answer
202 views
Prefer Dependency-Injection over Partial Mocking?
I know this SO question, but it deals with the subject in more general terms.
Should I prefer using partial Mocks over Dependency Injection? My question is based on the following quote from OCMock:
...
0
votes
2answers
80 views
Why is my PartialMock method ignoring my expectation
I've got a base class that I'm using as a PartialMock as such
1 IContextManager contextManager = mocks.StrictMock<IContextManager>();
2 target = ...
0
votes
1answer
1k views
Rhino Mocks mock inherited interface
i have a class e.g. DerivedClass that inherits from a base class e.g. BaseClass. BaseClass implements an interface called IBaseClass. IBaseClass has 1 property called TestProperty which is an integer ...
0
votes
2answers
606 views
Why does my partial mock have all virtual methods mocked, even if no expectations are set?
I have a user control which does some validation in the ValidateChildren method which I would like to test. I have created a partial mock of the user control, but although I am not setting any ...
0
votes
1answer
658 views
Expectations on Partial Mock - NullReference Exception
I've a problem with partial mocking using Rhino Mocks:
var authentication = (FormsAuthenticationService)_mocks.PartialMock(
typeof(FormsAuthenticationService));
Expect.Call( delegate{ ...