vote up 3 vote down star
3

What are the available code coverage tools for scala?

I have scala spec tests and a Hudson continuous integration set-up. Is there something I can hook-in to this setup to measure and track code coverage?

flag

2 Answers

vote up 2 vote down

I use Cobertura. However, any Java coverage tool should work just fine. The only catch is that you will end up with a large number of auto-generated classes in your coverage list. This is because while Scala compiles down into very natural JVM bytecode, it is forced to produce an unnaturally large number of classes to accommodate common functional features like lazy evaluation.

link|flag
vote up 2 vote down

Undercover( http://code.google.com/p/undercover/ ) is little better.

link|flag
Thanks - will try it out soon. – arnab Aug 12 at 19:04

Your Answer

Get an OpenID
or

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