profile

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 4, 2019 License: MIT Imports: 10 Imported by: 0

Documentation

Overview

Copyright (c) 2013 The Gocov Authors.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ConvertProfiles

func ConvertProfiles(filenames ...string) (*gocovutil.Packages, error)

Types

type Converter

type Converter struct {
	// contains filtered or unexported fields
}

type Coverage

type Coverage struct {
	// Total is total statements count
	Total int

	// Reached is covered statements count
	Reached int
}

Coverage is coverage report with total and reached statements count

func (*Coverage) Percentage

func (c *Coverage) Percentage() float64

Percentage gets coverage in percents

type FuncExtent

type FuncExtent struct {
	// contains filtered or unexported fields
}

FuncExtent describes a function's extent in the source by file and position.

type FuncVisitor

type FuncVisitor struct {
	// contains filtered or unexported fields
}

FuncVisitor implements the visitor that builds the function position list for a file.

func (*FuncVisitor) Visit

func (v *FuncVisitor) Visit(node ast.Node) ast.Visitor

Visit implements the ast.Visitor interface.

type PackageReport

type PackageReport struct {
	Coverage
	Functions map[string]*Coverage
}

PackageReport is package coverage report

type Report

type Report struct {
	Coverage
	Packages map[string]*PackageReport
}

Report is coverage report from GoCov profile

func Create

func Create(pkgs gocovutil.Packages) (r Report)

Create creates a new report from GoCov profile

func (*Report) CheckCoverage

func (r *Report) CheckCoverage(threshold float64) error

CheckCoverage checks if report satisfies coverage requirements

func (*Report) FormatFull

func (r *Report) FormatFull() string

FormatFull returns detailed report

func (*Report) FormatSimple

func (r *Report) FormatSimple() string

FormatSimple returns simplified report

type StmtExtent

type StmtExtent extent

StmtExtent describes a statements's extent in the source by file and position.

type StmtVisitor

type StmtVisitor struct {
	// contains filtered or unexported fields
}

func (*StmtVisitor) VisitStmt

func (v *StmtVisitor) VisitStmt(s ast.Stmt)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL