forked from chen3feng/stl4go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_helper.go
84 lines (71 loc) · 1.32 KB
/
test_helper.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package stl4go
import (
"fmt"
"testing"
)
func report(t *testing.T, msg string) {
t.Helper()
t.Errorf("Wrong: %v\n", msg)
}
func reportMismatch[T comparable](t *testing.T, a T, op string, b T) {
t.Helper()
report(t, fmt.Sprintf("%v %v %v", a, op, b))
}
func expectEq[T comparable](t *testing.T, a, b T) {
t.Helper()
if a != b {
reportMismatch(t, a, "==", b)
}
}
func expectNe[T comparable](t *testing.T, a, b T) {
t.Helper()
if !(a != b) {
reportMismatch(t, a, "!=", b)
}
}
func expectLt[T Ordered](t *testing.T, a, b T) {
t.Helper()
if !(a < b) {
reportMismatch(t, a, "<", b)
}
}
func expectGt[T Ordered](t *testing.T, a, b T) {
t.Helper()
if !(a > b) {
reportMismatch(t, a, ">", b)
}
}
func expectLe[T Ordered](t *testing.T, a, b T) {
t.Helper()
if !(a <= b) {
reportMismatch(t, a, "<=", b)
}
}
func expectGe[T Ordered](t *testing.T, a, b T) {
t.Helper()
if !(a >= b) {
reportMismatch(t, a, ">=", b)
}
}
func expectTrue(t *testing.T, actual bool) {
t.Helper()
if !actual {
reportMismatch(t, actual, "==", true)
}
}
func expectFalse(t *testing.T, actual bool) {
t.Helper()
if actual {
reportMismatch(t, actual, "==", false)
}
}
func expectPanic(t *testing.T, f func()) {
t.Helper()
defer func() {
t.Helper()
if r := recover(); r == nil {
report(t, "din't panic")
}
}()
f()
}