-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbehaviour_test.go
38 lines (34 loc) · 1.04 KB
/
behaviour_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
// 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
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_17/factorial_convey/behaviour_test.html
//
package factorial
import (
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestFactorial(t *testing.T) {
Convey("0! should be equal 1", t, func() {
So(Factorial(0), ShouldEqual, 1)
})
}
func TestFactorial2(t *testing.T) {
Convey("10! should be greater than 1", t, func() {
So(Factorial(10), ShouldBeGreaterThan, 1)
})
Convey("10! should be between 1 and 10000000", t, func() {
So(Factorial(10), ShouldBeBetween, 1, 10000000)
})
}