Documentation
¶
Index ¶
Constants ¶
View Source
const ( AsyncSupported = "async-supported" FilterName = "filter-name" FilterClass = "filter-class" ServletName = "servlet-name" ServletClass = "servlet-class" URLPattern = "url-pattern" )
Variables ¶
This section is empty.
Functions ¶
func NewJUnitCmd ¶
func NewJaCoCoCmd ¶
func NewJavaCmd ¶
func NewKeystoreCmd ¶
func NewWebXMLCmd ¶
Types ¶
type CovRec ¶
type CovRec struct {
Group string `json:"group" yaml:"group"`
Pkg string `json:"pkg" yaml:"pkg"`
Class string `json:"class" yaml:"class"`
InstrMis int `json:"instruction_missed" yaml:"instruction_missed"`
InstrCov int `json:"instruction_covered" yaml:"instruction_covered"`
BranchMis int `json:"branch_missed" yaml:"branch_missed"`
BranchCov int `json:"branch_covered" yaml:"branch_covered"`
LineMis int `json:"line_missed" yaml:"line_missed"`
LineCov int `json:"line_covered" yaml:"line_covered"`
ComplMis int `json:"complexity_missed" yaml:"complexity_missed"`
ComplCov int `json:"complexity_covered" yaml:"complexity_covered"`
MethMis int `json:"method_missed" yaml:"method_missed"`
MethCov int `json:"method_covered" yaml:"method_covered"`
}
type FilterMapping ¶
func (FilterMapping) String ¶
func (fm FilterMapping) String() string
type ServletMapping ¶
type ServletMapping struct {
Pattern string `json:"url-pattern"`
Servlet Servlet `json:"servlet"`
Chain []FilterMapping `json:"filter-mappings,omitempty"`
}
func (ServletMapping) String ¶
func (sm ServletMapping) String() string
type WebApp ¶
type WebApp struct {
Mapping []ServletMapping `json:"servlet-mappings"`
}
Click to show internal directories.
Click to hide internal directories.