package ast import ( "testing" ) func TestFormatArgAttr(t *testing.T) { nodes := map[string]testNode{ `0x7f1234567890 1`: testNode{&FormatArgAttr{ Addr: 0x7f1234567890, Pos: NewPositionFromString("col:47, col:57"), Arg: "1", ChildNodes: []Node{}, }, 0x7f1234567890, NewPositionFromString("col:47, col:57"), []Node{}, }, } runNodeTests(t, nodes) }