-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathint_64_test.go
More file actions
35 lines (30 loc) · 864 Bytes
/
int_64_test.go
File metadata and controls
35 lines (30 loc) · 864 Bytes
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
package assert
import "testing"
func TestThatInt64IsZeroHasNoErrors(t *testing.T) {
assert, mockT := setupWithMockT(t)
assert.ThatInt64(0).IsZero().IsZero()
mockT.HasNoErrors()
}
func TestThatInt64IsZeroHasErrorMessages(t *testing.T) {
assert, mockT := setupWithMockT(t)
assert.ThatInt64(-1).IsZero()
assert.ThatInt64(1).IsZero()
mockT.HasErrorMessages(
"Expected zero, but was <-1>.",
"Expected zero, but was <1>.",
)
}
func TestThatInt64IsNonZeroHasNoErrors(t *testing.T) {
assert, mockT := setupWithMockT(t)
assert.ThatInt64(-1).IsNonZero()
assert.ThatInt64(1).IsNonZero()
mockT.HasNoErrors()
}
func TestThatInt64IsNonZeroHasErrorMessages(t *testing.T) {
assert, mockT := setupWithMockT(t)
assert.ThatInt64(0).IsNonZero().IsNonZero()
mockT.HasErrorMessages(
"Expected nonzero, but was zero.",
"Expected nonzero, but was zero.",
)
}