1
vote
1answer
35 views
Does mocha run the code in a stub (Rails)?
Im new to tdd and stubbing. When I stub a method im assumng that any code within that method does not get executed? Im trying to fake the method raising an exception but the results of my test …
1
vote
1answer
19 views
How can I provide an API stub for an MEF component?
The Visual Studio 2010 SDK ships with many assemblies like Microsoft.VisualStudio.Text.Data and Microsoft.VisualStudio.Text.UI that are just stubs. To write an extension for Visual Studio, you …
0
votes
1answer
49 views
Moq: Stubbing read only properties: Possible? [closed]
I need to stub out a read only property getter(ie. no setter) of a stubbed interface to return a string.
Have tried:
dataSourceStub.SetupGet(x => x.Name).Returns("test");
I want to pass the …
1
vote
4answers
72 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 DateTime.Now; };
…
0
votes
1answer
75 views
“Time out” when multithreading requests to a webservice with java and axis2
Hi,
I'm working with a slow webservice (about 4 minutes each request) and I need to do about 100 requests in two hours, so I've decided to use multiple threads. The problem is that I can only have 2 …
1
vote
2answers
3k views
Access restriction on class due to restriction on required library rt.jar?
I'm attempting to compile Java 1.4 code that was created by IBM's WSDL2Java on Java5 without recreating the stubs and saw this error in Eclipse. I'm under the assumption that the stubs created should …
0
votes
1answer
48 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 Httpclient.
3
votes
4answers
607 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 looking for this with both …
2
votes
2answers
34 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 have to do is add …
0
votes
1answer
41 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 delegates much be …
0
votes
0answers
13 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 taking an inordinately …
0
votes
1answer
45 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 virtual string Name { get; …
3
votes
5answers
966 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 assigning 42 to …
2
votes
2answers
559 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 hence the tests …
1
vote
1answer
43 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 getName(). I'm trying to …
