| java.lang.Object net.sourceforge.groboutils.codecoverage.v2.logger.StdoutChannelLogger
StdoutChannelLogger | public class StdoutChannelLogger implements IChannelLogger(Code) | | Logs coverage reports to a directory of logs. The directories are split
by the channel index, and the directory contains one log per class file
analyzed. The contents are in CSV format:
method index , mark index EOL
author: Matt Albrecht groboclown@users.sourceforge.net version: $Date: 2004/05/11 23:22:33 $ since: May 11, 2004 |
Method Summary | |
public void | cover(String classSignature, short methodIndex, short markIndex) Records a coverage of a marked bytecode instruction. | final protected String | createCoverString(String classSig, short methodIndex, short markIndex) Make static final so that the invocation time is minimized. |
StdoutChannelLogger | public StdoutChannelLogger(short index)(Code) | | |
cover | public void cover(String classSignature, short methodIndex, short markIndex)(Code) | | Records a coverage of a marked bytecode instruction. This method should
never throw an exception.
Parameters: classSignature - a signature of the class file being covered.this signature includes the fully-qualified name of the class,along with a checksum to uniquely identify it. Parameters: methodIndex - index for a method within the class. The meta-datastore will know how to translate the index to a method signature. Parameters: markIndex - the index of the bytecode instruction mark for thisparticular channel. |
createCoverString | final protected String createCoverString(String classSig, short methodIndex, short markIndex)(Code) | | Make static final so that the invocation time is minimized.
|
|
|