Top "Stub" questions

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

PowerMock: stub methods from parent class

I'm using PowerMock and I'd like to know how to keep all behavior of the child class, but stub super …

java overriding powermock super stub
How to mock angularjs $window.sessionStorage with Jasmine and Karma

I'm brand new to Jasmine and trying to figure out how to mock the $window.sessionStorage object when testing an …

angularjs unit-testing jasmine stub
How write stub method with NUnit in C#

I have 2 classes: FirstDeep.cs SecondDeep.cs I did simple code for example: class FirstDeep { public FirstDeep() { } public string AddA(…

c# testing nunit stub
Stubbing a React component method with Sinon

I'm trying to stub a React component method for testing purpose: var Comp = React.createClass({ displayName: "Comp", plop: function() { console.…

javascript reactjs stub sinon
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 …

ruby-on-rails rspec stub
RSpec: how to stub inherited method current_user (w/o Devise)?

I have a controller based on MHartl's RoR4 Tutorial And just like MHartl, I'm not using Devise, I rolled my …

ruby-on-rails ruby-on-rails-4 rspec stub
How to stub Python methods without Mock

I'm a C# dev moving into some Python stuff, so I don't know what I'm doing just yet. I've read …

python unit-testing mocking stub
Possible to stub method twice within a single test to return different results?

I would like to re-stub someHandler.getStatus, but I'm getting TypeError: Attempted to wrap getStatus which is already wrapped .. it(…

javascript unit-testing sinon stub
Is there any simulator/tool to generate messages for streaming?

For testing purpose, I need to simulate client for generating 100,000 messages per second and send them to kafka topic. Is …

streaming apache-kafka simulation messaging stub
What is the difference between mocks, stubs and fake objects

Although there are plenty of resources, even here on SO, only two of the terms are compared to each other …

unit-testing mocking stub