A replacement implementation for objects, methods, or functions in order to remove external dependencies.

learn more… | top users | synonyms

3
votes
0answers
11 views

Dynamically hide a viewstub when a new one is created

I made a viewstub that is inflated and created again many times. The layout it uses includes a "delete" button that hides the viewstub (or deflates it). In the onCreate method I have this: ViewStub ...
1
vote
0answers
14 views

Stub setter in Rhino Mock partial mock

I'm following the accepted answer in this question but I'm getting a NullReferenceException. What I need is having a partial mock stub a property (both getter and setter) to behave like a stub (as a ...
-5
votes
0answers
25 views

Creating a stub in java [closed]

I want to create a stub in which I will post a xml,parse and validate xml using xsd, store the data of xml in oracle db and then send back response, all this using java/j2ee.I am completely new and ...
1
vote
2answers
81 views

How to mock objects in Erlang using Meck?

Okay, I'm using Meck and I'm lost. My first language (that I've been writing for about 7 months) is Ruby, so I can't seem to wrap my brain around Meck mocking yet. I do get Ruby mocking though. ...
0
votes
1answer
35 views

Rhino Mock Stubbing method with ExpandoObject as parameter

I want to unit test that a method under test calls a stubbed object and method with the right parameters. The problem is that one of the parameters is a dynamic (ExpandoObject). If "data" (variable ...
0
votes
0answers
16 views

web client ISO-8859-9 characters contaminates

I've generated webclient using Weblogic8.1 - ClientGen (with ant).My eclipse encoding set is ISO-8859-9.When i set a function parameter which includes Turkish character using client.jar sometimes ...
0
votes
1answer
33 views

JAX-WS: Eclipse Web Service wizard generates wrong stubs

I have a SOAP web service with JAX-WS. There I got a method createTransaction(String, String, String, int, String[][]). When I create a new Web Service client with Eclipse, it however generates stubs ...
0
votes
1answer
58 views

Stub (…) received unexpected message (…) with (no args)

I try to write a test using RR. What I need is a stub of a model object. describe ApplicationController do subject(:application_controller) { ApplicationController.new } let(:messages) ...
2
votes
1answer
36 views

How do I properly test this method with OCMock?

I'm new to OCMock and i'm trying to test if a method is called, except I want the method to be a stub since it contains other loading methods I do not care to test in the current test. - (void)setUp ...
1
vote
1answer
184 views

How to test background jobs (Sidekiq) with Rspec?

A large part of my application relies on background jobs to process user's websites, so I need to write some tests to cover these. First question is how to test code that's in a Sidekiq worker class, ...
0
votes
0answers
41 views

How can I test a user input method that is called later in the chain?

In this code, two players are created, and the two players belong to a session. When the session.complete method is called, it creates a result for each player(now that I think of it, I could probably ...
3
votes
0answers
102 views

Emulate softkey BACK button

i'm working on a small system overlay and i want to replace my Nexus4 softkeys with it. Got the home and recend apps thing working but i'm strugglin with the implementation of the back key. Searched ...
2
votes
1answer
80 views

rspec - How can I stub a method with multiple user inputs?

How would I stub a method that takes two user inputs using rspec? Is it possible? class Mirror def echo arr = [] print "enter something: " arr[0] = gets.chomp ...
1
vote
1answer
253 views

Using Spock to stub both Gorm and other methods in a Grails domain class

Sorry if this is a newbie question but I would really appreciate any insights the community could offer with regard to a problem I am having with stubbing the following method which I have in a Grails ...
0
votes
0answers
58 views

How do you stub helper methods within scope in an rspec helper spec?

When writing a spec for a helper that references another helper, how are you able to stub out the reference to the other helper to prevent an undefined local variable or method error? Just as an ...
0
votes
2answers
70 views

How to stub :where method in Rspec?

I have following code: Group.where('name ~* ?', params[:name]).first How to stub where method in that case? Group.stub(:where).and_return(mock_model(Group, name: "SomeName")) causes error: ...
0
votes
1answer
108 views

Powermock constructor mocking has no effect on the instantiated object

Class A{ B objB = new B(); objB.someBMethod(); } Class B{ public void someBMethof(){ C objC = new C(); } } class C{ int a=1; public C(){} ...
2
votes
1answer
68 views

Generate a stub or mocking a method in .NET

I am writing a unit test that performs logic as the following: SomeObject obj1 = new SomeObject(); obj1.SomeMethod(args); Inside SomeMethod: public void SomeMethod(*Some Args*){ ...
3
votes
1answer
136 views

What is double method in rspec for?

It is stated in rspec doc that I should use double method in order to create test double. But I can see that it works perfectly ok even if I don't use double. Is there anything wrong with not using ...
0
votes
0answers
90 views

How do I stub a mongoose subdocument?

I'm trying to avoid re-testing methods of my subdocuments by stubbing them out in tests of the parent document. However, I have not been able to find a way to do so. A simplified example of what I'm ...
1
vote
1answer
27 views

RhinoMock update method argument's properties

I have the following two lines in my code: Factory.MyMethod(argument); var property = argument.InterestingValue; So, MyMethod takes in an instance of a class and updates the InterestingValue on ...
2
votes
1answer
69 views

Stubbing a checked exception: how to handle the exception

I am using Junit 4 and Mockito and I want to stub a method call so that it throws an exception: doThrow(MyException.class).when(myObject).foo(); The problem is, MyException is a checked exception, ...
1
vote
0answers
59 views

Stubbing the window object for a qUnit test

I am trying to write some tests around this code that performs two different operations depending on whether it has an open opener window or not, like so: var functionIWantToTest = function () { ...
2
votes
2answers
95 views

Mockito: Stub method with complex object as a parameter

Maybe this is a newbie question, but can't find the answer. I need to stub a method with Mockito. If the method has "simple" arguments, then I can do it. For example, a find method with two ...
0
votes
1answer
144 views

Where to define the conduit xml node for Basic Authentication in a client stub generated by Apache CXF?

I have retrieved a wdsl file over Https from a Soap server serving the web-services that I must work with. Then, with Apache Cxf wsdl2java, I have created the client stub so as to check the ...
1
vote
1answer
136 views

how to use CXF and ANT to generate Stub from nonlocal wsdl url

I would like to have ANT script (not Maven) to generate Stub from wsdl url.I know how to do that if the file wsdl stays in my local (c drive), but not able to do that when wsdl stays remotely. Please ...
2
votes
0answers
71 views

Rspec method missing for stub_chain with Rails Model

I am attempting to use stub_chain to mock a series of calls in a controller action. However it is complaining about a method not found error. After a bunch of searching, I didn't really find any info ...
1
vote
1answer
34 views

why do we have to MANUALLY keep ; [semicolon] after ) [roundbracket] everytime after autostub [closed]

One stupid question is running on my mind. In Android, every time an OnClickListener or an event is generated i.e. an autostub is generated after the event, we have to manually keep the semicolon ...
0
votes
2answers
51 views

Stubbing instance method for OpenTok object

The gem I'm using to integrate OpenTok in my Rails application is at: https://github.com/opentok/Opentok-Ruby-SDK. I based the core of the application on this example: ...
0
votes
2answers
52 views

RSpec having trouble stubbing method called with inline rescue

I'm trying test a method on a controller: def a_method(list) @users = [] list.each do |x| if user=User.find(x) rescue nil @users << user end end end In my Rspec example I ...
0
votes
0answers
55 views

How to stub a class inside a module with Mocha in Ruby?

I know there are lot of questions in here around this. I've tried all of them but none of them works. Basically, I'm trying to stub TwitterOAuth::Client so my test won't call the real api every time. ...
0
votes
1answer
26 views

Stubbing out save methodin rails with rspec

I have the following action in my controller: def create @user = current_user @vin = @user.vins.new(params[:vin]) if @vin.save # waiting for implementation ...
0
votes
2answers
129 views

Setting host address of rmi object [closed]

I want to set the host address of remote object in rmi. Is it possible setting this ip addres in stub ? NOT: I know that I can make a trick using ThreadLocalRmiClientSocket factory but I don't want ...
0
votes
1answer
207 views

android webservice axis2 stub

im trying to learn about web services and i already did a simple webservice (sayhello) and made a client that show a console message. To do this... i made a webservice client that generate a stub. ...
0
votes
0answers
75 views

Selenium mock server access

I have a website that I want to test using Selenium WebDriver (version 2.28), and to integrate it with my CI (Maven and Hudson). The thing is that in order to properly test the front-end, I need to ...
0
votes
1answer
39 views

Create new stub method that checks if the method exists in Rspec

I would like to create some especial stub methods stub_check and stub_chain_check that ensure the method exists. For example: #spec/controllers/payments_controller_spec.rb` describe ...
1
vote
1answer
74 views

libspotify does not connect

I'm trying to get familiar with libspotify and I must say the documentation on libspotify is seriously lacking. I've hacked together a small app from the examples but I can't get it to work. I'm ...
0
votes
1answer
181 views

How to stub Array instance method using RSpec

I have an instance method in String class who call the Array instance method "shuffle". In order for me to test the method using RSpec, I want to stub it. vowels = %w(a e i o u y) vowels.shuffle I ...
0
votes
1answer
48 views

error opening port

My problem is that I have try and check with different port_name like 7 or 14 or 25. It's not opening or process the serial data the handle simply matching with the if condition and it is closing the ...
0
votes
1answer
67 views

How to test using interface collection with Rhino.Mocks

In my interface public IMyListInterface : IList<IMyItem> { void Foo(); } how can I easily create an example for testing classes that use IMyListInterface. Currently I'm using ...
1
vote
1answer
85 views

Understanding Rspec Stubs and Controller Tests

My first time I'm using a stub and I have a controller that runs a method when the page is called. If that method returns empty I want a redirect back to the home page. Thus my controller looks like ...
1
vote
1answer
102 views

How to know what's a stub?

Does stub always mean the same thing when you write programs? "Stubs provide replacement implementations for objects, methods, or functions in order to remove external dependencies. Stubs are ...
3
votes
3answers
121 views

How do I include test classes and configuration in my war for integration testing using maven?

I currently have a maven web project that I am attempting to write integration tests for. For the structure of the project, I've defined test stubs under src/test/java, whilst the spring bean ...
0
votes
2answers
257 views

Java RMI, cant find stub class , java.rmi.ServerException: RemoteException occurred in server thread;

I am trying to run my rmi program. However it cant seem to find my stub class. I do the command 'start rmiregistry' which starts successfully. then after doing : java -classpath . ...
1
vote
1answer
61 views

Rhino Mocks stub Expressions

I would like to stub a method with the following signature: Product[] GetAllActive(Expression<Func<Product, bool>> predicate, bool asNoTracking = true, params ...
0
votes
1answer
40 views

Writing a chainable dsl for stubs

In some tests I'm writing I need to create a lot of stubs that are pretty similar. I'm using Mocha. user.stubs(:hq?).returns(false) user.stubs(:has_role?).with("admin").returns(true) And so on. ...
1
vote
2answers
92 views

Why can't I change the return value in a Rhino Mocks stub object?

Forgive me if this is a stupid question, but I'm fairly new at mocking, and am trying to get my head around it. I have some unit tests (using the built-in Visual Studio 2010 Professional testing ...
0
votes
1answer
152 views

Can I execute my unit test methods with stubs/shims commands in VS 2012 Professional?, those created in VS 2012 ultimate though

I created my unit test methods with stubs/shims in VS 2012 ultimate. Can I execute my test methods with stubs/shims commands in VS 2012 Professional?
0
votes
1answer
120 views

JDeveloper - how to generate stub class

I'm new in Java and JDeveloper. I have to maintain two applications- first is for the public part of a website, second is for administrative part of a website. Both projects use same database. I have ...
0
votes
0answers
104 views

How to stub only the first call to a definition using RSpec with Ruby on Rails

I have the following method in my Rails Application controller that tries to render an http status page (403) from an erb file. But in the case of an error rendering this erb file I would like to ...

1 2 3 4 5 7