lcov 5.0.0 copy "lcov: ^5.0.0" to clipboard
lcov: ^5.0.0 copied to clipboard

discontinued
outdated

Parse and format to LCOV your code coverage reports. The best way to share your code coverage stats.

example/main.dart

import 'dart:io';
import 'package:lcov/lcov.dart';

/// Formats coverage data as LCOV report.
void formatReport() {
  final lineCoverage = LineCoverage(2, 2, [
    LineData(6, executionCount: 2, checksum: 'PF4Rz2r7RTliO9u6bZ7h6g'),
    LineData(7, executionCount: 2, checksum: 'yGMB6FhEEAd8OyASe3Ni1w')
  ]);

  final record = Record('/home/cedx/lcov.dart/fixture.dart')
    ..functions = FunctionCoverage(1, 1)
    ..lines = lineCoverage;

  final report = Report('Example', [record]);
  print(report);
}

/// Parses a LCOV report to coverage data.
Future<void> parseReport() async {
  final coverage = await File('lcov.info').readAsString();

  try {
    final report = Report.fromCoverage(coverage);
    print('The coverage report contains ${report.records.length} records:');
    print(report.toJson());
  }

  on LcovException catch (err) {
    print('An error occurred: ${err.message}');
  }
}
3
likes
0
points
245
downloads

Publisher

verified publisherbelin.io

Weekly Downloads

Parse and format to LCOV your code coverage reports. The best way to share your code coverage stats.

Homepage

Documentation

Documentation

License

unknown (license)

Dependencies

json_annotation

More

Packages that depend on lcov