-
Notifications
You must be signed in to change notification settings - Fork 15
/
const_test.go
69 lines (52 loc) · 1.08 KB
/
const_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
package gg
import (
"testing"
)
func TestConst(t *testing.T) {
t.Run("single", func(t *testing.T) {
buf := pool.Get()
defer buf.Free()
expected := "const Version=2"
Const().
AddField("Version", Lit(2)).
render(buf)
compareAST(t, expected, buf.String())
})
t.Run("typed", func(t *testing.T) {
buf := pool.Get()
defer buf.Free()
expected := "const Version int =2"
Const().
AddTypedField("Version", "int", Lit(2)).
render(buf)
compareAST(t, expected, buf.String())
})
t.Run("multiple", func(t *testing.T) {
buf := pool.Get()
defer buf.Free()
expected := `const (
Version=2
Description="Hello, World!"
)
`
Const().
AddField("Version", Lit(2)).
AddField("Description", Lit("Hello, World!")).
render(buf)
compareAST(t, expected, buf.String())
})
t.Run("line comment", func(t *testing.T) {
buf := pool.Get()
defer buf.Free()
expected := `const (
// Version is the version
Version=2
)
`
Const().
AddLineComment("Version is the version").
AddField("Version", Lit(2)).
render(buf)
compareAST(t, expected, buf.String())
})
}