-
Notifications
You must be signed in to change notification settings - Fork 4
/
add_test.go
92 lines (83 loc) · 2.02 KB
/
add_test.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
85
86
87
88
89
90
91
92
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Sedmnáctá část
// Testování aplikací naprogramovaných v jazyce Go
// https://www.root.cz/clanky/testovani-aplikaci-naprogramovanych-v-jazyce-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů ze sedmnácté části:
// https://github.com/tisnik/go-root/blob/master/article_17/README.md
//
// Demonstrační příklad číslo 7:
// Implementace jednotkových testů.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_17/test07/add_test.html
package main
import (
"fmt"
"math"
"testing"
)
type AddTest struct {
x int32
y int32
expected int32
}
func checkAdd(t *testing.T, testInputs []AddTest) {
for _, i := range testInputs {
result := add(i.x, i.y)
if result != i.expected {
msg := fmt.Sprintf("%d + %d should be %d, got %d instead",
i.x, i.y, i.expected, result)
t.Error(msg)
}
}
}
func TestAddBasicValues(t *testing.T) {
var addTestInput = []AddTest{
{0, 0, 0},
{1, 0, 1},
{2, 0, 2},
{2, 1, 3},
}
checkAdd(t, addTestInput)
}
func TestAddNegativeValues(t *testing.T) {
var addTestInput = []AddTest{
{0, 0, 0},
{1, 0, 1},
{2, 0, 2},
{2, 1, 3},
{2, -2, 0},
}
checkAdd(t, addTestInput)
}
func TestAddMinValues(t *testing.T) {
var addTestInput = []AddTest{
{math.MinInt32, 0, math.MinInt32},
{math.MinInt32, 1, math.MinInt32 + 1},
}
checkAdd(t, addTestInput)
}
func TestAddMaxValues(t *testing.T) {
var addTestInput = []AddTest{
{math.MaxInt32, 0, math.MaxInt32},
{math.MaxInt32, 1, math.MinInt32},
{math.MaxInt32, math.MinInt32, -1},
}
checkAdd(t, addTestInput)
}
func TestAddMinMaxValues(t *testing.T) {
var addTestInput = []AddTest{
{math.MinInt32, 0, math.MinInt32},
{math.MinInt32, 1, math.MinInt32 + 1},
{math.MaxInt32, 0, math.MaxInt32},
{math.MaxInt32, 1, math.MinInt32},
{math.MaxInt32, math.MinInt32, -1},
}
checkAdd(t, addTestInput)
}