blob: d183b865108b271f5c756c3a411e0d6373298736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package sub
import (
"golang.flu0r1ne.net/planr"
)
func Evaluate(params []string) {
tcs := Runner().Evaluate()
earned := 0.0
total := 0.0
passed := 0
for _, tc := range tcs {
cfg := tc.Config
if cfg.Points != nil {
points := float64(*cfg.Points)
total += points
if tc.Result.Status == planr.PASSING {
earned += points
passed++
}
}
tcPprint(tc)
}
printResults(
passed,
len(tcs),
earned,
total,
);
}
|