Tagged Questions
The stubs tag has no wiki summary.
13
votes
5answers
629 views
What is wrong with Stubs for unit testing?
I just watched this funny YouTube Video about unit testing (it's Hitler with fake subtitles chewing out his team for not doing good unit tests--skip it if you're humor impaired) where stubs get ...
5
votes
5answers
1k views
Why do we need mocking frameworks like Easymock , JMock or Mockito?
We use hand written stubs in our unit tests and I'm exploring the need for a Mock framework like EasyMock or Mockito in our project.
I do not find a compelling reason for switching to Mocking ...
3
votes
1answer
146 views
Mocks or Stubs?
I have a method that calls two other methods in it.
def main_method(self, query):
result = self.method_one(query)
count = self.method_two(result)
return count
def method_one(self, query):
...
3
votes
2answers
80 views
autotools: don't include library when doing “make check”
So I'm writing tests for my code, and I want to stub out the calls to library functions (make sure that it's calling the right library calls at the right time, and that it handles errors ...
1
vote
2answers
91 views
How to create JAXWS web service server skeletons from wsdl ( not in IDE)
i can't find any where how to create web service from server skeletons ( java pojo's )from
wsdl using JAXWS. The only tutorials I see are using automated wizard in NetBeans and and axis2 in eclipse. ...
1
vote
2answers
68 views
When should I stub out a type by manually creating a “stub” version, rather than using a mocking framework
Are there any circumstances where it is favourable to manually create a stub type, as opposed to using a mocking framework (such as Rhino Mocks) at the point of test.
We take both these approaches in ...
0
votes
2answers
32 views
Unit test class with stubs. Should I configure stubs to return ALWAYS correct values?
this is one of my questions about unit testing.
I'm reading The Art Of Unit Testing and at chapter 3 the author shows how to remove dependency between one or more classes. That seems clear to me. ...
0
votes
0answers
51 views
Problems with stubs
I don't understand what's the wrong with my spec. I have these objects in my application:
User has one Igreja
Igreja has many Evento
Evento has one HotSite
HotSite has many Pagina, but not ...
0
votes
1answer
139 views
About use Stubs - Java
I'm readin http://xunitpatterns.com/Test%20Stub.html and have some questions about the use of stubs, for example, in the code shown on the page the author creates a class called ...
0
votes
1answer
148 views
mapping a dataset to textfield inside UItableView
Its been 2 days am stuck up with a problem.
In my app, I am using some .net asmx services(as backend) to get some data and populating it on my views. In one of the modules, i need to edit and save the ...