vote up -3 vote down star

I am a newbie to OO and TDD. most of the talk/videos on TDD that I have run across talks about calculators or some other mundane tests

Calculators? Can I roll out a calculator App and make money?

with TDD i am spending more than half my time coming up with tests for erroneous input(basically)

I come from a procedural world. I have been able to construct a Windows App that is dynamically constructed(No Draggy and Droppy like Scott Bellware calls it) without TDD in a short order. I just dont't see the point of TDD. If I as a developer know the Specs and in my mind think thru all the paths and DUMB user input, I can come up with a solution without the following TDD Tests

IF_THE_INPUT_IS_ZERO_THAN_THROW_AN_EXCEPTION

anyone with me?????

flag

0% accept rate
-2 ok i am loving it. i love it when the crowd is less educated than me. for the most part people who follow this site are CLUELESS and that goes even for this site's founder Joe the bug tracking salesman – codemnky Oct 3 at 4:49
Well, there are everywhere clueless guys around but that's not an excuse to be impolite. – Thomas Jung Oct 3 at 4:53
2  
Is your question: What are the advantages and disadvantages of TDD? This has been thoroughly discussed. – Thomas Jung Oct 3 at 4:57
WHAT DOES TDD PROVIDE THAT CAN'T BE SOLVED BY MERE MORTALS – codemnky Oct 3 at 5:14
1  
11 Questions, 0% accept rate, and ranting that you're smarter than other people...yup, I definitely want to help you out. – phoebus Oct 3 at 5:43
show 3 more comments

closed as not a real question by Adam Rosenfield, Alex Martelli, Brian, Mitch Wheat, skaffman Oct 3 at 5:50

2 Answers

vote up 1 vote down

A) The point of doing trivial samples with TDD is so that you spend your time learning TDD, not learning the particular program that you're writing. Calculators being trivial is the point - you're focusing on the TDD mechanics, not writing a calculator!

B) TDD really shines with strong object-oriented designs. It's not so great with procedural or "OO-procedural" code. One of the nice things about TDD is that it will drive you to well-factored OO code over time.

C) TDD does not decrease time of initial code, especially with trivial programs. Where it can help is lowering maintenance costs, both by providing a set of test suites as well as by promoting good design in your code that is less likely to get broken by unexpected side-effects, especially when being worked on by developers that aren't you.

D) If you've already decided you hate TDD, there's little chance you'll find value in it. If you're looking for reasons not to do it, you'll find them. If you'd like to discuss the pros and cons, that's great. If this is just a rant disguised as a question, that's fine too, but be honest about it.

link|flag
> TDD really shines with strong object-oriented designs. No. Testing is orthogonal to programming paradigms (be it oo, fp, lp, pp). – Thomas Jung Oct 3 at 5:41
Well-factored OO code was called well designed code in the old days. Refactoring is not a goal. – Thomas Jung Oct 3 at 5:44
The specific techniques that TDD utilizes work best with well-designed, strongly object-oriented code. That doesn't mean that testing is irrelevant for non-OO code, just that the particular techniques that TDD uses (including things like mocks) work best in a strongly OO environment. And refactoring is not a goal - but it is generally a fact of life given that change, almost universally, happens. – kyoryu Oct 3 at 7:05
TDD does not define the specific techniques used. How do you compare TDD in an OO environment to TDD in a FP environment? They are equally applicable. You can solve every problem with every paradigm. (Ignoring the fact that a certain paradigm may fit better.). This is true for the SUT and the tests. – Thomas Jung Oct 3 at 7:47
Okay, I'll grant you that - well designed OO code is actually more closely related to FP code than imperative code, in my view. I'll still maintain that TDD doesn't work as well in a mostly imperative or procedural codebase. – kyoryu Oct 3 at 18:50
show 2 more comments
vote up 0 vote down

You're misinterpreting what was said about testing.

If you can create a product version after version without TDD that's perfectly fine.

Although I think it is economically advisable to use some of the computing power at hand to solve your maintenance problems. One way to do this is TDD.

Without some automation your product will fail in the end.

The argument was not to stop automated testing at all. It was that automation is not a value in itself and it helps the programmer more (directly) than the customer.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.