The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
24 views

Are there any tools that can generate stubs in WCF based on a XSD?

I'm currently writing a stub for a quoting service so that I can continue writing my application. I have a copy of the xsd that the service will request and respond with. I was thinking about ...
0
votes
1answer
23 views

Stubs access to the protected variables

I need to unit test an this class: public abstract class GaBase { protected GoogleAnalyticsInfo GAInfo; protected abstract void PopulateGAInfo(); public string GetGoogleAnalyticsTag() ...
0
votes
0answers
13 views

Static stub creation of EJB 3 on JBOSS AS 7

I want to create the stubs of all the ejb's i have in my application statically. Preferably using an ant task. I am using JBOSS AS 7 or AEP 6.0. I could not find a way to do this in the jboss ...
0
votes
0answers
109 views

Get string array from web service stubs into a list on BlackBerry Java App

I am getting an array of strings from a web service. I already generated the stub classes and imported them into my BlackBerry project. Now how can I access that array of strings and put that into a ...
0
votes
1answer
55 views

Axis2 stubs generation issue

I generated Java stubs from WSDL using apache axis2, Apache tomcat 6 server instance for a SOAP web service. The generated stubs contains lots of errors(100) some of them were duplicate methods and ...
3
votes
1answer
88 views

Understanding stubs, fakes and mocks.

I have just started to read Professional Test Driven Development with C#: Developing Real World Applications with TDD I have a hard time understanding stubs, fakes and mocks. From what I understand ...
2
votes
1answer
162 views

rspec view stubs and partials

I'm testing a view with RSpec (2.12 on Rails 3.2.8). I'm using CanCan to conditionally display certain elements on a page. This requires a controller method 'current_user'. In some of my specs I've ...
1
vote
2answers
96 views

Do contract tests necessary imply stubs?

Recently, I've been reading a lot of articles (mostly from J.B. Rainsberger) about contract and collaborative tests. In order to get it into it, I've started a small project. From my understanding, ...
0
votes
1answer
390 views

Microsoft Fakes (Shims and / or Stubs) on a c# method with SQL code

I'm trying to do some some learning around Unit Testing (using out-of-the-box functionality (i believe it is MSTest.exe) and Microsoft Fakes (stubs and Shims). I'm using Visual Studio 2012 Ultimate ...
1
vote
0answers
78 views

Generating Websphere 7 stubs with Maven 2

Does anyone know how to generate the rmi stubs for websphere 7 using Maven 2? I have found a websphere 6 maven plugin, but not sure that it would be compatible and it is quite old.
10
votes
2answers
721 views

When to use Meteor.methods and utilizing stubs

Using Meteor, I'm attempting to understand when to use server-side Meteor.methods() while still retaining instant UI updates. From Andrew Scala's introductory tutorial, he claims that ...
1
vote
2answers
326 views

PHPUnit and Mock Objects not working

I am not sure if I am doing something wrong or it is a bug with PHPUnit and mock objects. Basically I am trying to test if $Model->doSomething() is called when $Model->start() is triggered. I ...
2
votes
1answer
244 views

Python's StringIO doesn't do well with `with` statements

I need to stub tempfile and StringIO seemed perfect. Only that all this fails in an omission: In [1]: from StringIO import StringIO In [2]: with StringIO("foo") as f: f.read() --> AttributeError: ...
0
votes
1answer
56 views

Different stubs generated by ColdFusion on two different servers

We have a dev server and a live server, both running ColdFusion 9. The ColdFusion versions are the same, the Java versions are the same, the JVM versions are the same. I am trying to connect to an ...
0
votes
1answer
244 views

Rails - How to stub a method for the whole test suite?

Right now I'm in the middle of a refactoring and I'm struggling with the following. I have a class like this: class Example def self.some_method if Rails.env.test? true else ...
0
votes
0answers
67 views

Rspec stubbing the methods

I'm stuck on one thing related to rspec mocking. Let's say we have this situation: def some_cool_method(param) #some logic which should be tested result = param+ 1 # logic which should be ...
0
votes
2answers
229 views

Switching between .Net Webservice and Java Webservice by changing URL

Here is the situation. I have received a WSDL (and included XSD) from someone that is generated by an Apache/Tomcat server (Java). The company i do a project for, prefers .NET so i used wsdl.exe to ...
0
votes
1answer
142 views

How to make vs2010 auto generate method stubs at the end of file

I try to auto generate method stub using visual studio's View.ShowSmartTag functionality When I choose this option, Method8 will be placed right after Method2 but I want to place it after all ...
1
vote
1answer
379 views

Optional parameters with a stub in RhinoMock

I want to stub a function that receive 2 boolean parameters. The first is required and the second is optional. If I try to send Arg.Is.Anything to the first but without information for the second, I ...
0
votes
2answers
120 views

Rails isolated tests running under rails env

I'm currently working on a project and we started migrating our tests to isolated test (no rails dependency, and using stubs and mocks). The thing is that until all the current tests are being ...
0
votes
2answers
85 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. ...
1
vote
2answers
2k 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. ...
3
votes
1answer
389 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): ...
0
votes
1answer
739 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
204 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 ...
3
votes
2answers
113 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 ...
7
votes
5answers
2k 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 ...
1
vote
2answers
102 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 ...
13
votes
5answers
1k 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 ...