-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelloworld_internal_test.go
68 lines (64 loc) · 1.35 KB
/
helloworld_internal_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
package main
import (
"testing"
)
//func ExampleMain(){
// main()
// // Output:
// // Hello World
//}
func TestGreet(t *testing.T) {
// prep phase
type scenario struct {
lang language
expectedGreeting string
}
var tests = map[string]scenario{
"English": {
lang: "en",
expectedGreeting: "Hello World",
},
"French": {
lang: "fr",
expectedGreeting: "Bonjor le monde",
},
"Akkadian, not supported": {
lang: "akk",
expectedGreeting: "unsupported language: \"akk\"",
},
"Greek": {
lang: "el",
expectedGreeting: "Χαίρετε Κόσμε",
},
"Hebrew": {
lang: "heb",
expectedGreeting: "שלום עולם",
},
"Urdu": {
lang: "ur",
expectedGreeting: "ہیلو دنیا",
},
"Vietnamese": {
lang: "vi",
expectedGreeting: "Xin chào Thế Giới",
},
"Italian": {
lang: "itl",
expectedGreeting: "Choi",
},
"Empty": {
lang: "",
expectedGreeting: "unsupported language: \"\"",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
// execution phase call function
greeting := greet(tc.lang)
// decision phase
if greeting != tc.expectedGreeting {
t.Errorf("expected: %q, got: %q", tc.expectedGreeting, greeting)
}
})
}
}