0
votes
1answer
26 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 …
0
votes
1answer
45 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
57 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
62 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
1answer
16 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
44 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.
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
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; …
1
vote
1answer
42 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 …
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
35 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 …
1
vote
2answers
207 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 of the …
2
votes
2answers
534 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
3answers
262 views
Usage of Assert.Inconclusive
Hi,
Im wondering how someone should use Assert.Inconclusive().
I'm using it if my Unit test would be about to fail for a reason other than what it is for.
E.g. i have a method on a class that …
0
votes
0answers
12 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 …
