I wrote a package that offers code-coverage for Julia source code, i.e., it
reports how many times each line of code was executed during a test-run.
It produces a report that is finer-grained than the built-in code coverage
capability, namely, it also reports how many times each branch was followed
in expressions with branching operators: ||, &&, ?:. My code is a bit of a
hack, so comments on how to improve it are welcome. It is available as
follows:
Pkg.clone("git://github.com/StephenVavasis/microcoverage")
-- Steve Vavasis