Tagged Questions
The stub tag has no wiki summary.
52
votes
8answers
73k 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 ...
15
votes
7answers
9k 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 ...
11
votes
7answers
3k 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 ...
9
votes
3answers
1k views
PHPUnit - multiple stubs of same class
I'm building unit tests for class Foo, and I'm fairly new to unit testing.
A key component of my class is an instance of BarCollection which contains a number of Bar objects. One method in Foo ...
7
votes
3answers
87 views
What is an easy way to stub / dummy a restful web service?
I want to create an android application, this application will make RESTful calls to a web service to obtain some data.
I know what the RESTful interface will be, but I don't want the hassle of ...
7
votes
2answers
370 views
Please explain how to create PHP's Phar stubs
I'm trying to create a very simple PHP CLI application that can be run as a phar file from the command line:
# php myProject.phar
This is what I've tried so far:
My Project
My project is in a ...
7
votes
2answers
1k views
Stubbing Chained Queries in Rails 3 and Rspec
I'm trying to test a scope I have that is based upon a chain of other scopes. ("public_stream" below).
scope :public, where("entries.privacy = 'public'")
scope :completed, where("entries.observation ...
7
votes
6answers
2k 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 ...
6
votes
2answers
1k views
Is there a way to undo Mocha stubbing of any_instance in Test::Unit
Much like this question, I too am using Ryan Bates's nifty_scaffold. It has the desirable aspect of using Mocha's any_instance method to force an "invalid" state in model objects buried behind the ...
6
votes
2answers
268 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, ...
6
votes
3answers
1k 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, ...
5
votes
3answers
165 views
How to stub a socket in C?
I've written client code that's supposed to send some data through a socket and read back an answer from the remote server.
I would like to unit-test that code. The function's signature is something ...
5
votes
1answer
101 views
What is the use of QName and Operator class?
Can anyone explain what is the use of QName, Operation and Stub class in J2ME by giving simple and understandable examples?
5
votes
5answers
550 views
Build a Visual Studio Project without access to referenced dlls
I have a project which has a set of binary dependencies (assembly dlls for which I do no have the source code). At runtime those dependencies are required pre-installed on the machine and at compile ...
5
votes
3answers
856 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 ...
5
votes
9answers
2k 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 ...
4
votes
1answer
407 views
How do I stub things in MiniTest?
Within my test I want to stub a canned response for any instance of a class.
It might look like something like:
Book.stubs(:title).any_instance().returns("War and Peace")
Then whenever I call ...
4
votes
2answers
135 views
Stubbing a Property get using Rhino Mocks
Using RhinoMocks, I am trying to Stub the getter value of a property. The property is defined as part of a Interface with only getter access.
However I get the error "Invalid call, the last call has ...
4
votes
4answers
359 views
C++ Unit Testing: Stubs (not mocks)?
Just getting into Unit Testing with C++. It looks like I will need to write several stub classes as I go along. My understanding is there is a difference between Mocks and Stubs. Basically it seems ...
4
votes
2answers
250 views
Rhino Mocks problems with private setter in stub
Error:
You are trying to set an expectation
on a property that was defined to use
PropertyBehavior. Instead of writing
code such as this: mockObject.Stub(x
=> x.SomeProperty).Return(42); ...
4
votes
1answer
647 views
rspec: Stub a template's helper method call from a controller spec using render_views
From Rails 3 / Rspec 2, I'm attempting to leverage the render_views feature of controller specs. The issue I've come across is that we've just installed the kaminari pager gem, and I want to stub out ...
4
votes
6answers
220 views
SQL server stub for java
I have a java application that is using MSSQL server through the JDBC driver. Is there some kind of stub that I can use for testing? For example I want to test how my application handle cases of ...
4
votes
3answers
183 views
Stub the behavior of a readOnly property
public interface ICell
{
int Value{get;}
void IncrementValue();
}
I want to create a stub for this interface in RhinoMocks.
I have a read only property and i ...
4
votes
2answers
440 views
what is a stub routine?
In regards to C what is a stub routine? Also an example would be much appreciated as well.
4
votes
2answers
2k views
Stubbing a before_filter with RSpec
I'm having trouble understanding why I can't seem to stub this controller method :load_user, since all of my tests fail if I change the actual implementation of :load_user to not return and instance ...
4
votes
4answers
2k 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; };
...
4
votes
4answers
3k views
Usage of Assert.Inconclusive
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 calculates ...
4
votes
7answers
1k views
TDD: Stub, Mock, or None of the Above
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-with-writing-testable-class
...
3
votes
0answers
39 views
what is a skeleton in rmi? How it is different from the stub file i kept on the client machine? [closed]
Possible Duplicate:
What is a skeleton in a network?
what is a skeleton in rmi ? I created a stub file and kept one in the client machine and the same in the server machine. I didn't keep ...
3
votes
4answers
127 views
How to stub a static method?
I am working on a brownfield application and am currently refactoring part of it. I am trying to do this in a TDD fashion but am running into a problem. Part of the code I am testing does
var ...
3
votes
3answers
105 views
How to stub DataMapper association with RSpec2?
I'm trying to write some specs and want to stub out the calls to the database so I don't rely on an actual filled database to get the tests running.
Now I don't really know how to stub the calls ...
3
votes
1answer
340 views
Can RSpec stubbed method return different values in sequence?
I have a model Family with a method location which merges the location outputs of other objects, Members. (Members are associated with families, but that's not important here.)
For example, given
...
3
votes
1answer
797 views
Stub a controller helper method in a template helper spec
My ApplicationController exposes a method (e.g. sort_direction) to the view templates by using helper_method :sort_direction. I then use this method in another method (e.g. sort_link) of a view helper ...
3
votes
3answers
400 views
Software engineering with Ada: stubs; separate and compilation units
I'm with a mechanical engineering background but I'm interested to learn good software engineering practice with Ada. I have a few queries.
Q1. If I understand correctly then someone can just write a ...
3
votes
3answers
355 views
Unit testing - testing in isolation
I've got a set up with a number of layers:
Website
Application / Service
Domain (contains entities)
Persistence (contains repositories)
I'm testing the persistence layer in isolation OK using ...
3
votes
2answers
114 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 ...
3
votes
2answers
282 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?
3
votes
3answers
1k views
Mocking a method that returns a sealed class in RhinoMocks
Running this code:
_foo = MockRepository.GenerateStub<IBar>();
_foo.Stub(x => x.Foo()).Return("sdf");
When
public interface IBar
{
string Foo();
}
public class Bar : IBar
{
public ...
3
votes
2answers
4k views
How to stub/mock JDBC ResultSet to work both with Java 5 and 6?
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 should ...
3
votes
5answers
243 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 ...
2
votes
1answer
24 views
Shortcut to create a javascipt function stub in Sublime Text 2
Is it possible to quickly create a method stub in Sublime Text 2? Perhaps a package I could install?
For example, I bind something in jquery -
$("p").bind("click", {foo: "bar"}, handler)
Could I ...
2
votes
1answer
66 views
understanding the call sequences during RMI
I have many doubts regarding the call sequence during Remote Method Invocation.
Following are the 4 error free pieces of code that i read to understand RMI.
1.) INTERFACE
import java.rmi.*;
public ...
2
votes
1answer
105 views
Easy Type-Driven Random Mockup Construction in C++
C++11's new Random or Boost.Random is really cool, powerful and flexible but cumbersome to use because of choice of generator, distribution, seeding of state handling (and in turn re-entrency and ...
2
votes
1answer
65 views
RSpec: Stub chains with arguments?
Just wondering if/how arguments can be passed in rspec stub chains. To give an example, suppose I have the following action:
def index
@payments = Payment.order(:updated_at).where(:paid => ...
2
votes
2answers
54 views
RSpec Stubbing: return in a sequence
I know the following things work:
returning a parameter
subject.should_receive(:get_user_choice){ |choices| choices.to_a[0] }
and a sequence (it will return a 0 on the first call, and the second ...
2
votes
1answer
50 views
Is it possible to create a stub of android.os.Bundle for testing under JVM?
As the title says, I want to know, if possible, how can I create a stub from Bundle to run at JVM (so not Dalvik). Since its part of android.os package, may be that is related to that impossibility.
...
2
votes
1answer
56 views
Rhino Mocks: Stub & Mocks. What is the difference
I'm using Rhino Mocks in my unit test.
I would like to know the difference between STUBS and MOCKS (mocks.Stub<T>() and mocks.StrictMock<T>()).
2
votes
2answers
65 views
Testing software: fake vs stub
There are quite a few written about stub vs mocks, but I can't see the real difference between fake and stub. Can anyone put some light on it?
2
votes
3answers
215 views
Rhino Mocks Stub Method not working
Why won't this test method work? I keep getting requires a return value or an exception to throw.
public AuthenticateResponse Authenticate(string username, string password)
{
...
2
votes
2answers
125 views
Is there a way in Moles to mole/mock a method with the params keyword?
Is there a way to mole/stub/mock a method with the params keyword?
Here is an example of the Method I am trying to mole/stub:
Void SomeMethod(bool finalizer,params string[] parameters)...
I have ...