76
votes
58answers
8k views
Why didn’t unit testing work out for your project?
Give short concrete answer: why unit testing did NOT work out for you (your project).
Will you particularly try again on a different project?
63
votes
27answers
4k views
TDD Anti-patterns catalogue
anti-pattern : there must be at least two key elements present to formally distinguish an actual anti-pattern from a simple bad habit, bad practice, or bad idea:
Some repeated pattern of action, …
52
votes
22answers
5k views
What’s the best way of unit testing private methods?
How do I use jUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test. Thanks.
49
votes
17answers
2k views
What Makes a Good Unit Test?
I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing.
My question is do you follow any rules of conduct for writing tests …
35
votes
35answers
3k views
How do you know what to test when writing unit tests?
Using C#, I need a class called User that has a username, password, active flag, first name, last name, full name, etc. There should be methods to Authenticate and Save. Do I just write a test for …
34
votes
15answers
2k views
How do you unit test a unit test?
I was watching Rob Connerys webcasts on the MVCStoreFront App, and I noticed he was unit testing even the most mundane things, things like:
public Decimal DiscountPrice
{
get
{
return …
33
votes
8answers
3k views
Best Practices of Test Driven Development Using C# and RhinoMocks
In order to help my team write testable code, I came up with this simple list of best practices for making our C# code base more testable. (Some of the points refer to limitations of Rhino Mocks, a …
29
votes
10answers
4k views
How do you unit test private methods?
I'm building a class library that will have some public & private methods. I want to be able to unit test the private methods (mostly while developing, but also it could be useful for future …
27
votes
34answers
3k views
What is the downside to Test Driven Development?
What do I lose by adopting test driven design. I am not looking for the positives, only the negatives.
25
votes
12answers
861 views
Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC
I have a fairly slick approach to doing C# development using the above tools/methodologies. Specifically i follow the "Jeffrey Palermo Agile Bootcamp" onion architecture. I feel like I'm a strong …
24
votes
16answers
1k views
I do not write tests. Am I stupid?
I've done a little bit of reading on unit testing and TDD, and I've never seriously considered writing tests to such a precise extent. Granted, I am not working on any projects that are ridiculously …
24
votes
17answers
1k views
How deep are your unit tests?
The thing I've found about TDD is that its takes time to get your tests set up and being naturally lazy I always want to write as little code as possible. The first thing I seem do is test my …
23
votes
11answers
2k views
Beginning TDD - Challenges? Solutions? Recommendations?
OK, I know there have already been questions about getting started with TDD.. However, I guess I kind of know the general concensus is to just do it , However, I seem to have the following problems …
22
votes
14answers
841 views
In TDD, what is the advantage of running the tests before even writing an empty method?
I see lots of TDD practitioners following this cycle:
1) Write your test as if the target
objects and API already exists.
2) Compile the solution and see it
break.
3) Write just …
20
votes
20answers
741 views
What are some reasons why a sole developer should use TDD?
I'm a contract programmer with lots of experience. I'm used to being hired by a client to go in and do a software project of one form or another on my own, usually from nothing. That means a clean …
