Tagged Questions

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 …
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
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
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.
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; …
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 …
0
votes
2answers
55 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 there is such …
1
vote
2answers
218 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 …
0
votes
0answers
46 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?
1
vote
3answers
283 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 …

1 2 3 next
15 30 50 per page