Tagged Questions
The testdrivendesign tag has no wiki summary.
18
votes
7answers
1k views
Unit Testing or Functional Testing?
I have recently heard of Functional Testing over Unit Testing.
I understand that Unit Testing tests each of the possibilities of a given piece of code from its most atomic form. But what about ...
18
votes
7answers
845 views
TDD - beginner problems and stumbling blocks
While I've written unit tests for most of the code I've done, I only recently got my hands on a copy of TDD by example by Kent Beck. I have always regretted certain design decisions I made since they ...
5
votes
7answers
678 views
The Purpose of Mocking
What is the purpose of mocking?
I have been following some ASP.NET MVC tutorials that use NUnit for testing and Moq for mocking. I am a little unclear about the mocking part of it though.
4
votes
4answers
219 views
Creating a Mapping Function Through TDD: Too Much Time Spent Writing Tests?
I'm a big TDD enthusiast, and always strive to write tests before writing production code to ensure correct behavior of the code that I'm writing. Occasionally, however, several question if it is ...
2
votes
2answers
98 views
TDD and MVC Crossroads. What ORM integrates nicely?
I'm just starting out in MVC world, and I've used a standard MVC template that's built into VS 2010. I've got a couple of controllers and views hooked up, and now I need to get to my database.
I've ...
2
votes
5answers
536 views
How can I still use DDD, TDD in BizTalk?
I just started getting into BizTalk at work and would love to keep using everything I've learned about DDD, TDD, etc. Is this even possible or am I always going to have to use the Visio like editors ...
1
vote
1answer
32 views
Why extract an interface when we can DI a delegate to make it testable?
I was browsing SO and came across this comment on an answer:
Why do we go through the ceremony of extracting an interface when we
can DI a delegate to make it testable?
This articulated a ...