-
Notifications
You must be signed in to change notification settings - Fork 178
/
level3.go
24 lines (19 loc) · 1.19 KB
/
level3.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package common
// models full level 3 summary of a test run from 1 (single) level 2 test run
type TestSummary3 struct {
NoResults []TestResultSummary `json:"no_results"`
// ordered list of tests (from level 2 summary) that:
// a) met minimum failure threshold as specified in property file property `failures_threshold_percent`
// b) is up to maximum slice size as specified in `failures_slice_max` in property file
MostFailures []TestResultSummary `json:"most_failures"`
// total # of tests (from level 2 summary) that:
// a) met minimum failure threshold as specified in property file property `failures_threshold_percent`
MostFailuresTotal int `json:"most_failures_total"`
// ordered list of tests (from level 2 summary) that:
// a) met minimum duration threshold as specified in property file property `duration_threshold_seconds`
// b) is up to maximum slice size as specified in `duration_slice_max` in property file
LongestRunning []TestResultSummary `json:"longest_running"`
// total # of tests (from level 2 summary) that:
// a) met minimum duration threshold as specified in property file property `duration_threshold_seconds`
LongestRunningTotal int `json:"longest_running_total"`
}