package
Version:
v0.0.0-...-2b2c18d
Opens a new window with list of versions in this module.
Published: Dec 16, 2020
License: MIT
Opens a new window with license information.
Imports: 9
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
View Source
const (
PASS = "pass"
FAIL = "fail"
SKIP = "skip"
)
type Coverage struct {
PackageName string `json:"package_name"`
Coverage float64 `json:"coverage"`
}
type Test struct {
PackageName string `json:"package_name"`
TestName string `json:"test_name"`
Time int `json:"time"`
Output string `json:"output"`
}
type TestSummary struct {
Name string `json:"name"`
TotalTests int `json:"total_tests"`
BuildErrors string `json:"build_errors"`
Results Results `json:"results"`
TotalCoverage float64 `json:"total_coverage"`
Coverages []*Coverage `json:"coverages"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.