class SimpleCov::Formatter::LcovFormatter
def format(result)
==== Args
generate lcov style coverage.
def format(result) create_output_directory! if report_with_single_file? write_lcov_to_single_file!(result.files) else result.files.each { |file| write_lcov!(file) } end puts "Lcov style coverage report generated for #{result.command_name} to #{lcov_results_path}" end