nswrap/ast/integer_literal_test.go

25 lines
423 B
Go

package ast
import (
"testing"
)
func TestIntegerLiteral(t *testing.T) {
nodes := map[string]testNode{
`0x7fbe9804bcc8 <col:14> 'int' 1`:
testNode{&IntegerLiteral{
Addr: 0x7fbe9804bcc8,
Pos: NewPositionFromString("col:14"),
Type: "int",
Value: "1",
ChildNodes: []Node{},
},
0x7fbe9804bcc8,
NewPositionFromString("col:14"),
[]Node{},
},
}
runNodeTests(t, nodes)
}