Is there any way to measure code coverage with DUnit? Or are there any free tools accomplishing that? What do you use for that? What code coverage do you usually go for?

Jim McKeeth: Thanks for the detailed answer. I am talking about unit testing in the sense of a TDD approach, not only about unit tests after a failure occured. I'm interested in the code coverage I can achieve with some basic prewritten unit tests.

link|improve this question

I have not accepted one of the answers yet, because I want to encourage people to write their opinion about unit testing, what tools they use and what coverage they try to achieve. So everybody, feel free to comment ;) – Smasher Feb 18 '09 at 16:06
feedback

5 Answers

up vote 10 down vote accepted

I have just created a new open source project on Google Code with a basic code coverage tool for Delphi 2010. http://code.google.com/p/delphi-code-coverage/

Right now it can measure line coverage but I'm planning to add class and method coverage too.

It generates html reports with a summary as well as marked up source showing you what lines are covered (green), which were not (red) and the rest of the lines that didn't have any code generated for them.

Update: As of version 0.3 of Delphi Code Coverage you can generate XML reports compatible with the Hudson EMMA plugin to display code coverage trends within Hudson.

Update: Version 0.5 brings bug fixes, increased configurability and cleaned up reports

Update: Version 1.0 brings support for emma output, coverage of classes and methods and coverage of DLLs and BPLs

link|improve this answer
Very simple and efficient tool. Thx for sharing ! – TridenT Jul 5 '10 at 8:32
Just a word or two of support for Christer, this tool is already useful and getting to be REALLY useful. – Mmarquee Sep 5 '10 at 20:44
2  
I've created a small wizard to help with delphi-code-coverage command line. See code.google.com/p/delphi-code-coverage-wizard – TridenT Jul 14 '11 at 19:32
feedback

I don't know of any free tools. AQTime is almost the defacto standard for profiling Delphi. I haven't used it, but a quick search found Discover for Delphi, which is now open source, but just does code coverage.

Either of these tools should give you an idea of how much code coverage your unit tests are getting.

link|improve this answer
Discover for Delphi is now open source sourceforge.net/projects/discoverd – Tiago Moraes Aug 13 '10 at 14:35
feedback

Are you referring to code coverage from unit tests or stale code? Generally I think only testable code that has a failure should be covered with a unit test (yes I realize that may be starting a holy war, but that is where I stand). So that would be a pretty low percentage.

Now stale code on the other hand is a different story. Stale code is code that doesn't get used. You most likely don't need a tool to tell you this for a lot of your code, just look for the little Blue Dots after you compile in Delphi. Anything without a blue dot is stale. Generally if code is not being used then it should be removed. So that would be 100% code coverage.

There are other scenarios for stale code, like if you have special code to handle if the date ever lands on the 31st of February. The compiler doesn't know it can't happen, so it compiles it in and gives it a blue dot. Now you can write a unit test for that, and test it and it might work, but then you just wasted your time a second time (first for writing the code, second for testing it).

There are tools to track what code paths get used when the program runs, but that is only simi-reliable since not all code paths will get used every time. Like that special code you have to handle leap year, it will only run every four years. So if you take it out then your program will be broken every four years.

I guess I didn't really answer your question about DUnit and Code Coverage, but I think I may have left you with more questions then you started with. What kind of code coverage are you looking for?

UPDATE: If you are taking a TDD approach then no code is written until you write a test for it, so by nature you have 100 test coverage. Of course just because each method is exercised by a test does not mean that its entire range of behaviors is exercised. SmartInspect provides a really easy method to measure which methods are called along with timing, etc. It is a little less then AQTime, but not free. With some more work on your part you can add instrumentation to measure every code path (branches of "if" statements, etc.) Of course you can also just add your own logging to your methods to achieve a coverage report, and that is free (well, expect for your time, which is probably worth more then the tools). If you use JEDI Debug then you can get a call stack too.

TDD really cannot easily be applied retroactively to existing code without a lot of refactoring. Although the newer Delphi IDEs have the ability to generate unit test stubs for each public method, which then gives you 100% coverage of your public methods. What you put in those stubs determines how effective that coverage is.

link|improve this answer
Thanks. I edited the question to make it more clear what I mean. – Smasher Feb 10 '09 at 10:02
I added some more to cover TDD. – Jim McKeeth Feb 10 '09 at 17:47
"...but that is only simi-reliable ... your program will be broken every four years." That is were unit tests on code that (currently) has no failures might help in preventing the code being deleted when the code coverage is run only on non-leap years? :) Personally I think any functions dealing with dates should be exercised in unit tests with all kinds of ivvy dates passed into them. Same applies to any "basic" functions that deal with "environmental factors". You do not want to be dependent on the current machine setup/date for your test /coverage results. – Marjan Venema May 30 '10 at 7:15
feedback

I use Discover for Delphi and it does the work, for unit testing with DUnit and Functional testing with TestComplete.

Discover can be configured to run from the command line for automation. As in:

Discover.exe Project.dpr -s -c -m
link|improve this answer
2  
Discover is here sourceforge.net/projects/discoverd now. – philnext Nov 3 '11 at 9:32
feedback

Discover works great for me. It hardly slows down your application, unlike AQTime. This may not be a problem for you anyway, of course. I think the recent versions of AQTime perform better in this respect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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