5
votes
5answers
220 views
What is wrong with Stubs for unit testing?
… it tests--skip it if you're humor impaired) where stubs get roundly criticized. But I don't understand w … hat wrong with stubs. … having chosen handwritten stubs and fakes instead of mocks (like Rhinomock etc)? …
7
votes
6answers
568 views
Are mocks better than stubs?
… Mocks Aren't Stubs … to use simpler mechanisms like for instance test stubs? …
1
vote
4answers
158 views
Rhino.Mocks - Stub one method of class and let other real methods use this stubbed one
I have TimeMachine class which provides me current date/time values. The class looks like this:
public class TimeMachine
{
public virtual DateTime GetCurrentDateTime(){ return Date …
1
vote
4answers
144 views
0
votes
2answers
60 views
How do I reset the result for a property in a stub without resetting the entire stub?
I'm new to Rhino Mocks, so I may be missing something completely.
Lets say I have an interface with has a half dozen properties:
public interface IFoo {
string Foo1 { get; …
3
votes
3answers
202 views
Are Axis2 generated stubs thread-safe?
… Are client stubs generated from WSDL by Axis2 thread-safe? …
2
votes
5answers
145 views
When to use stubs and mocks?
I've this confusion all the time. If I write a code which uses fake code to assert some operation, how do i trust my real implementation when it is started really using the real objects instead of …
3
votes
5answers
179 views
What is Your Tool-of-Choice for Creating Stubs?
Following on from my last question "What is a "Stub", I would really like to sit down tonight and play more with creating stub …
0
votes
3answers
104 views
RhinoMocks: IList<T> Stub doesn’t add items to the list after it’s been stubbed.
I have something that looks like the following:
var someList = MockRepository.GenerateStub<IList<ISomething>>();
someList.Add(MockRepository.GenerateStub<ISomething&g …
0
votes
2answers
130 views
How to generate stub in android?
Hi,Can anyone tell me which tool is used to generate Stub in Android and is it possible to use JAX-RPC concept to call the web service in android.If is it possible please provide me some code with …
20
votes
2answers
883 views
What’s the difference between faking, mocking, and stubbing?
… Mocks and stubs can be hand generated or generated by a mocking f … ns between my class and dependent classes. I use stubs once I have verified the interactions and am test … y to abstract out data dependencies or when mocks/stubs are too tedious to set up each time. …
3
votes
3answers
490 views
Stubbing Chained Methods with Rspec
I want to call a named_scope that will only return one record, but the named_scope returns an array, that's not a big deal as I can just chain it with .first:
Model.named_scope(para …
4
votes
3answers
436 views
What is a “Stub”?
So, carrying on with my new years resolution to get more in to TDD, I am now starting to work more with Rhino Mocks.
…
3
votes
2answers
207 views
When to Expect and When to Stub?
I use NMock2, and I've drafted the following NMock classes to represent some common mock framework concepts:
Expect: this specifies what a mocked method should return …
4
votes
6answers
1k views
rspec: How to stub an instance method called by constructor?
class A
def initialize
@x = do_something
end
def do_something
42
end
end
How can I stub do_something in rspec, before the original implementa …
