package ast import ( "testing" ) func TestFormatAttr(t *testing.T) { nodes := map[string]testNode{ `0x7fcc8d8ecee8 Implicit printf 2 3`: testNode{&FormatAttr{ Addr: 0x7fcc8d8ecee8, Pos: NewPositionFromString("col:6"), Implicit: true, Inherited: false, FunctionName: "printf", Unknown1: 2, Unknown2: 3, ChildNodes: []Node{}, }, 0x7fcc8d8ecee8, NewPositionFromString("col:6"), []Node{}, }, `0x7fcc8d8ecff8 printf 2 3`: testNode{&FormatAttr{ Addr: 0x7fcc8d8ecff8, Pos: NewPositionFromString("/usr/include/sys/cdefs.h:351:18, col:61"), Implicit: false, Inherited: false, FunctionName: "printf", Unknown1: 2, Unknown2: 3, ChildNodes: []Node{}, }, 0x7fcc8d8ecff8, NewPositionFromString("/usr/include/sys/cdefs.h:351:18, col:61"), []Node{}, }, `0x273b4d0 Inherited printf 2 3`: testNode{&FormatAttr{ Addr: 0x273b4d0, Pos: NewPositionFromString("line:357:12"), Implicit: false, Inherited: true, FunctionName: "printf", Unknown1: 2, Unknown2: 3, ChildNodes: []Node{}, }, 0x273b4d0, NewPositionFromString("line:357:12"), []Node{}, }, } runNodeTests(t, nodes) }