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