6
votes
2answers
160 views
Teaching testing habits to other developers?
Developers have many different options out there to create fast and relatively maintainable unit test suites. But this takes a great deal of knowledge involved in decoupling modules of code, …
4
votes
3answers
399 views
What is a “Stub”?
So, carrying on with my new years resolution to get more in to TDD, I am now starting to work more with Rhino Mocks.
One thing I am keen to do is to make sure I really grok what I am getting in to, …
3
votes
2answers
169 views
When to Expect and When to Stub?
I use NMock2, and I've drafted the following NMock classes to represent some common mock framework concepts:
Expect: this specifies what a mocked method should return and says that the call must …
3
votes
7answers
496 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:
…
3
votes
5answers
171 views
What is Your Tool-of-Choice for Creating Stubs?
Following on from my last question "What is a "Stub", I would really like to sit down tonight and play more with creating stub objects.
What is your tool of choice for creating Stub objects?
And …
3
votes
5answers
934 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 …
3
votes
9answers
777 views
Parsing C++ to generate unit test stubs
I've recently been trying to create units tests for some legacy code.
I've been taking the approach of using the linker to show me which functions cause link errors, greping the source to find the …
3
votes
4answers
585 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
33 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 …
2
votes
4answers
374 views
Django unit testing with date/time-based objects
Suppose I have the following Event model:
from django.db import models
import datetime
class Event(models.Model):
date_start = models.DateField()
date_end = models.DateField()
def …
2
votes
6answers
453 views
Library to create java stubs for webservice.
Hello.
I would like to know if anyone can recommend a good library to generate java webservices stubs as clients.
Currently I'm using a product which has embedded a generator which only needs the …
2
votes
2answers
520 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
4answers
52 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; };
…
1
vote
1answer
14 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 …
1
vote
1answer
41 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 …
