-
Notifications
You must be signed in to change notification settings - Fork 4
/
add_test.go
41 lines (36 loc) · 1.03 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
// 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 3:
// Implementace jednotkových testů.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_17/test03/add_test.html
package main
import "testing"
func TestAdd(t *testing.T) {
result := add(1, 2)
if result != 3 {
t.Error("1+2 should be 3, got ", result, "instead")
}
result = add(10, 20)
if result != 30 {
t.Error("10+20 should be 30, got ", result, "instead")
}
}
func TestAddZero(t *testing.T) {
result := add(1, 0)
if result != 1 {
t.Error("1+0 should be 1, got ", result, "instead")
}
}