0
votes
1answer
77 views
Rhino mocks - assert method was called with given parameter
My test method look like this:
[Test]
public void Generated_CaseNumber_should_be_set_as_LastCaseNumber_in_PropertiesManager()
{
String generatedCaseNum …
2
votes
7answers
164 views
Unit testing a class with no return value?
Hello,
I didn't find much in tutorials on this specific question..
So I have a class called 'Job' which has public ctors and a single public Run() function. Everything in the cla …
1
vote
4answers
86 views
rspec mocks: verify expectations in it “should” methods?
I'm trying to use rspec's mocking to setup expectations that I can verify in the it "should" methods... but I don't know how to do this... when i call the .should_receive methods o …
9
votes
7answers
264 views
Why Create Mock Objects?
During a recent interview I was asked why one would want to create mock objects. My answer went something like, "Take a database--if you're writing test code, you may not want that …
5
votes
5answers
160 views
What is wrong with Stubs for unit testing?
I just watched this funny YouTube Video about unit testing (it's Hitler with fake subtitles chewing out his team for not doing good unit tests--skip it if you're humor impaired) wh …
