LcovFormatter constructor

LcovFormatter(
  1. Resolver resolver, {
  2. List<String>? reportOn,
  3. String? basePath,
})

Creates a LCOV formatter.

If reportOn is provided, coverage report output is limited to files prefixed with one of the paths included. If basePath is provided, paths are reported relative to that path.

Implementation

LcovFormatter(this.resolver, {this.reportOn, this.basePath});