I was trying to ignore all the toString() methods from instrumentation using following configuration. This wasn't really working? This is using cobertura as maven plugin. This was based on a previous answer http://stackoverflow.com/questions/951569/exclude-code-from-code-coverage-with-cobertura.
<instrumentation>
<ignores>
<ignore>toString</ignore>
</ignores>
</instrumentation>
What do you think I'm doing wrong. I wasn't able to find an example for this on the cobertura documentation.