Home | History | Annotate | Download | only in coverage

Lines Matching full:coverage

18 """Utilities for generating code coverage reports for Android tests."""
36 """Helper utility for obtaining code coverage results on Android.
39 coverage results for a pre-defined set of tests and targets
45 # root path of generated coverage report files, relative to Android build root
73 """Extract runtime coverage data and generate code coverage report.
77 test_suite_name: name of TestSuite to generate coverage data for
78 target: the CoverageTarget to use as basis for coverage calculation
79 device_coverage_path: location of coverage file on device
111 """Generate the code coverage report.
115 coverage_file_path: absolute file path of code coverage result file
116 targets: list of CoverageTargets to use as base for code coverage
118 do_src: True if generate coverage report with source linked in.
150 "coverage.em")
175 """Merges a set of emma coverage files into a consolidated file.
178 input_paths: list of string absolute coverage file paths to merge
193 """Combines all target mode code coverage results.
195 Will find all code coverage data files in direct sub-directories of
196 self._output_root_path, and combine them into a single coverage report.
209 """Consolidates code coverage results for all target result directories."""
230 list of absolute file path strings of coverage files
238 """Parses the set of coverage target data.
280 """Create combined coverage reports for all targets and tests."""
309 """Enable building an Android target with code coverage instrumentation."""
313 """Does coverage operations based on command line args."""
314 # TODO: do we want to support combining coverage for a single target
317 parser = optparse.OptionParser(usage="usage: %prog --combine-coverage")
319 "-c", "--combine-coverage", dest="combine_coverage", default=False,
320 action="store_true", help="Combine coverage results stored given "
328 coverage = CoverageGenerator(None)
330 coverage.CombineCoverage()
332 coverage.TidyOutput()