class CoverageReporter::CoberturaParser
Defined in:
coverage_reporter/parsers/cobertura_parser.crConstructors
-
.new(base_path : String | Nil)
NOTE Provide the base path for the sources.
Instance Method Summary
-
#globs : Array(String)
Returns an array of globs that will be used to look for coverage reports.
- #matches?(filename) : Bool
- #parse(filename) : Array(FileReport)
Instance methods inherited from class CoverageReporter::BaseParser
globs : Array(String)
globs,
matches?(filename : String) : Bool
matches?,
parse(filename : String) : Array(FileReport)
parse
Constructor methods inherited from class CoverageReporter::BaseParser
new(base_path : String | Nil = nil)
new
Class methods inherited from class CoverageReporter::BaseParser
name : String
name,
source_digest(filename : String) : String | Nil
source_digest
Constructor Detail
def self.new(base_path : String | Nil)
#
NOTE Provide the base path for the sources. You can check "filename" in coverage report and see what part is missing to get a valid source path.
Instance Method Detail
def globs : Array(String)
#
Description copied from class CoverageReporter::BaseParser
Returns an array of globs that will be used to look for coverage reports.