Monday, July 02, 2007

Unit testing (from objectives)

Still responding to the questions posted in response to my TDD and objectives entry. The question was about how to do TDD, specifically UI and also about what happens when the general consistency fails.


Well the UI question is easy: You can’t really do TDD for user interfaces.  You can, but you have to jump through hoops to get your test framework to push buttons.  Of course there are tools which will do this for you but these usually fall into the realm of ATDD (Acceptance TDD) and system testing.


But, what TDD can help you with is the logic behind the UI.  We all know we should separate program and business logic from the UI but we also all know it has a habit of getting in there.  Well if you are practising TDD you separate the two (as you know you should) and you can TDD the logic and leave the UI as a lot more trivial. (And testable with other tools.)


The other way of doing it is to test the output.  Increasingly application emit XML or HTML to generate their user interfaces and you can test that.  You can test small segments of XML to see if it contains the expected data.


For me the secret of TDD is that it is a Design technique, thats what the second D stands for after all.  It is about designing your code with tests rather than UML, or flow charts or what ever.  You do it before you write the code, it forces you to think about what you are about to write and that is design.


Second part of the question: general consistency.  Well, true, a little change might break a lot of tests, but actually you want that to happen.  If someone removed operator== then you want your tests to break because it highlights the change. 


A good set of tests round your code ensures that any unexpected changes are found quickly.


Of course, when you make a significant change in your code you might find a lot of tests broken, and you end up having to fix lots of tests but:



  • Firstly a major change should product major breakage so you can get it right

  • Second a well structured, properly separated design, will be less prone to breaking.  Writing tests is itself an engineering exercise.

All in all TDD promotes a lot of good practises which we know are good but somehow forget to do.


 

1 comment:

  1. The main objection to unit testing and to TDD is always "too much extra time required to do it properly". For the same reason many people rely on series of "smoke tests" (and then additional "infinite monkey" procedure) because it reveals most of the bugs, takes less time, makes you feel that at least in general the software works and at the same time resembles or substitutes user acceptance testing. Just because the software is usually complex, just running it all the way through in several modes will cover most of the execution paths anyway (the software kinda tests itself), but the results will be comprehensible. It might produce right results for wrong reasons, yes. But it shortens the development time significantly and doesn't stop you from modifying the software (there are no tests to re-write). Perhaps, majority of project managers will tell you something similar and insist on old proven tactics even if they are proven to be wrong. Since many of the manajers are just timesheets-keepers they care more about time-frames rather than about unmeasurable software quality.

    Yuryr

    ReplyDelete

Note: only a member of this blog may post a comment.