Tagged Questions
The isolation-frameworks tag has no wiki summary.
11
votes
6answers
419 views
How could I refactor this factory-type method and database call to be testable?
I'm trying to learn how to do Unit Testing and Mocking. I understand some of the principles of TDD and basic testing. However, I'm looking at refactoring the below code that was written without tests ...
5
votes
3answers
479 views
Preferred unit testing isolation framework for .net
I have used the RhinoMocks product for quite some time and have been quite happy with the product - never had a reason to look elsewhere really. I was recently asked by the good folks at TypeMock to ...
4
votes
3answers
192 views
Do we really need isolation frameworks to create stubs?
I have read this: http://martinfowler.com/articles/mocksArentStubs.html
My concepts about a stub and a mock are clear. I understand the need of isolation frameworks like moq, rhinomocks and like to ...
3
votes
7answers
180 views
Standards for Mock Objects
In Roy Osherove's book [Unit Testing][1] book, he explains that a single unit test should contain between 0 and 1 mocks. He suggests that if your test isn't asserting on the mock, then don't use a ...
2
votes
2answers
99 views
Isolation framework for testing for Mono
Having read good things about Moles I'd like to add an isolation framework to our set of tools for writing unit tests.
Our application runs under Mono as it is deployed on both Linux and Windows and ...
2
votes
4answers
419 views
Which is the best isolation framework for Java? JMock, Easymock, Mockito, or other?
I realize this has been asked before, but the last time was in mid 2008.
If you were starting a new project right now, which one would you use and why? What are their strengths/weaknesses ...
0
votes
2answers
181 views
Has anyone made moles work properly?
I was trying to find a consistent description on how to use moles isolation framework but haven't found much on this topic.
So far i did the following:
Download moles from here (x86 version).
...
0
votes
2answers
100 views
I am looking for a good isolation framework for creating mocks of concrete types with no interfaces
I am looking for a good isolation framework for creating mocks of concrete types with no interfaces. I have some legacy code that I cannot touch and doesn't have interfaces.
Of course I would prefer ...
0
votes
2answers
36 views
Can you recommend me a way to create a sample portion of a data-base as an xml file to be consumed by Unit Tests?
Can you recommend me a way or tell me the most common practice to create a sample portion of a data-base as an xml file so that I can use it from my unit tests without worrying about Db state to be ...
0
votes
1answer
83 views
Using a Factory to replace instances by fakes from an Isolation Framework
A month ago I finished reading the book "Art of Unit Testing" and today I finally had time to start using Rhino Mocks with unit testing a service that sends/receives messages to devices (UDP) and ...