0
votes
1answer
26 views
Faking web requests in Rails test without Fakeweb
I'm using the Handsoap gem with Httpclient gem as the driver in a Rails app.
How can I prevent network calls from Handsaop/Httpclient gems in test cases?
FakeWeb doesn't support …
3
votes
4answers
567 views
Amazon S3 standalone stub server
I seem to recall reading about an Amazon S3-compatible test server that you could run on your own server for unit tests or whatever. However, I've just exhausted my patience lookin …
2
votes
2answers
32 views
Alter initial Visual Studio code behind stub code?
When I add a new form to an ASP.NET project (WebForms), and then "View Code" some basic stub code is added -- basic "using" statements, form_load event, etc.
So the first thing I …
0
votes
1answer
28 views
Use reflection stub to initialize a delegate field lazily
The problem:
a .Net 2.0 class with a few thousand delegate fields generated by a code generator
varying signatures
delegates may or may not return values
no generics
these del …
0
votes
0answers
10 views
Where can I find ejb _*_Wrapper and __*_Remote_DynamicStub classes?
I've got a fairly boring stateful session bean called MyEJB, and I'm using Glassfish 2.1 and javaws. Everything works fine, except method calls which return a lot of data are takin …
0
votes
1answer
44 views
What’s the best way to fill POCOs with dummy data?
I have a bunch of POCOs that all relate to each other in a big tree. For example, this is the top-level element:
public class Incident : Entity<Incident>
{
public virtua …
3
votes
5answers
888 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 implementation is called (thus …
2
votes
2answers
472 views
How to stub/mock JDBC ResultSet to work both with Java 5 and 6?
Hi,
I'm testing some of my classes working with JDBC statements etc and now I got problem with JDBC ResultSet interface:
The software should run both with Java 5 and Java 6 and h …
1
vote
1answer
36 views
groovy mocks with abstract methods
I have a Java object called Parameter and I'm trying to mock it using groovy. Parameter is an abstract class with 1 abstract method. It also has a non-abstract method called getNam …
0
votes
2answers
48 views
Create an instance of an ASMX stub object from a real object
I have an ASMX web service that exposes several objects. I have a real instance of that object, and I would like to instantiate a stub object that is populated from it. Clearly th …
3
votes
7answers
482 views
TDD: Stub, Mock, or None of the Above
Hello,
I'm trying to learn TDD by applying it to a simple project of mine. Some details (and an earlier question) are here:
http://stackoverflow.com/questions/473679/tdd-help-wi …
1
vote
3answers
269 views
using rmic in netbeans
I have written rmi server code in netbeans 6.5. how can i use rmic in netbeans 6.5 so that i can create server_stub class?
0
votes
1answer
152 views
Is it legal to stub the #class method of a Mock object when using RSpec in a Ruby on Rails application?
I would like to stub the #class method of a mock object:
describe Letter do
before(:each) do
@john = mock("John")
@john.stub!(:id).and_return(5)
@john.stub!(:class). …
1
vote
2answers
153 views
Creating BlackBerry method stubs using wscompile on WSDL from ColdFusion
I have been working on a BlackBerry application that consumes web services from ColdFusion 7. The Java ME SDK and the Java Wireless Toolkit both require that the generated WSDL be …
0
votes
0answers
37 views
Autogeneration of tests and stubs with CUnit.
Does anybody know of a free/commercial tool that would automatically generate tests and stubs for C code to work with CUnit framework?
