Tagged Questions

2
votes
5answers
103 views

How do I mock an IEnumerable<T> so that I can test a method that receives it

I have a method that I want to test which expects an IEnumerable<T> as a parameter. I'm currently mocking the contents of the IEnumerable<T> as follows (Using Moq): …
0
votes
1answer
24 views

StrucutureMap RhinoMock Record/Playback, Example needed

I'm looking for some examples on how to do the following Mock Tests using StructureMap or Unity with NUnit. I have the following code structure public interface IDAL { List&l …
1
vote
1answer
31 views

Can I use rspec mocks to stub out version constants?

I've got code that only needs to run on a certain version of ActiveRecord (a workaround for a bug on old AR libraries). This code tests the values of ActiveRecord::VERSION constant …
1
vote
5answers
105 views

Unit Test - Check a method call with an object that doesn’t override equals

Hi All, This is a general question on how to unit-test a Java Class using mock objects. I can summarize my problem with this example. Let's say I've an Interface called MyInterfac …
1
vote
3answers
145 views

How to mock a web service

Do I have to rewrite my code to do this into an interface? Or is there an easier way? I am using Moq
2
votes
2answers
42 views

How can I validate exits and aborts in RSpec?

I am trying to spec behaviors for command line arguments my script receives to ensure that all validation passes. Some of my command line arguments will result in abort or exit be …
1
vote
4answers
86 views

How to test the function behavior in unit test?

Hi Everyone, If a function just calls another function or performs actions. How do I test it? Currently, I enforce all the functions should return a value so that I could assert …
1
vote
1answer
62 views

Rspec Mocks: mock / yield the block from a method call

I've got this code: Net::SSH.start(@server, @username, :password => @password) do |ssh| output = ssh.exec!(@command) @logger.info 'SSH output: ' @logger.info out …
0
votes
1answer
26 views

Is verify called automatically on Groovy’s MockFor

According to the javadocs, Groovy's MockFor object always ends with a verify. Its StubFor docs say calling verify is up to the user. I read that as saying that verify will automati …
0
votes
2answers
48 views

JMock and JIntegra COM classes (ESRI, ArcObjects)

I'm writing a unit test but am having difficulty mocking an object from the ESRI ArcObjects library. This library is actually a COM library which is connected to Java using JInteg …
2
votes
3answers
141 views

How do you design a C++ application so that Mock Objects are easiest to use?

I've never developed using Test Driven Development, and I've never used Mock Objects for unit testing. I've always unit tested simple objects that don't incorporate other aspects o …
9
votes
4answers
273 views

Mocking vs. faking, when to use what?

Can anyone come up with a guidelines kind of stuff, suggesting the ideal scenarios when to go for mocking or faking (setting up the essentials manually). Bit confused with the appr …
43
votes
11answers
4k views

What c# mocking framework to use?

I want to start using mock objects on my next c# project. After a quick google I've found there are many: NMock EasyMock.Net TypeMock Isolator Commercial / Paid Rhino Mocks M …
1
vote
1answer
35 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 getNam …
0
votes
5answers
148 views

Yet another question on mocking…

First let me state that, despite being a fairly new practitioner of TDD, I'm pretty much sold on its benefits. I feel like I've progressed enough to consider using mocks and have …

1 2 3 4 5 9 next
15 30 50 per page