Closed GoogleCodeExporter closed 8 years ago
Please ask a question to the mailing list instead of reporting an issue. In
fact you can make use of the Coverage tool to dump you all lines by attaching a
listener to it.
The only question is how you call the Coverage tool, because it makes only
sense to do this from within a Java/Scala application.
http://code.google.com/p/apparat/source/browse/apparat-core/src/main/scala/appar
at/tools/coverage/CoverageObserver.scala
http://code.google.com/p/apparat/source/browse/apparat-core/src/main/scala/appar
at/tools/coverage/Coverage.scala
val coverage = new Coverage.CoverageTool()
coverage.addObserver(new CoverageObserver { override def instrument(file:
String, line: Int) { println("instrument file "+file+" line "+line) } })
coverage.configure(...)
coverage.run()
Original comment by joaebert
on 14 Oct 2011 at 10:40
Original issue reported on code.google.com by
r...@ooyala.com
on 13 Oct 2011 at 7:42