LineCoverage

The representation of a line from the .lst file

Constructors

this
this()
Undocumented in source.
this
this(string line)

Members

Variables

code
string code;
hasCode
bool hasCode;
hits
size_t hits;

Examples

It should parse an empty line

auto lineCoverage = LineCoverage(`      |`);
lineCoverage.code.should.equal("");
lineCoverage.hits.should.equal(0);
lineCoverage.hasCode.should.equal(false);

Meta