package ast import ( "testing" ) func TestImplicitValueInitExpr(t *testing.T) { nodes := map[string]testNode{ `0x7f8c3396fbd8 <> 'sqlite3StatValueType':'long long'`: testNode{&ImplicitValueInitExpr{ Addr: 0x7f8c3396fbd8, Pos: NewPositionFromString(""), Type1: "sqlite3StatValueType", Type2: "long long", ChildNodes: []Node{}, }, 0x7f8c3396fbd8, NewPositionFromString(""), []Node{}, }, `0x7feecb0d6af0 <> 'char'`: testNode{&ImplicitValueInitExpr{ Addr: 0x7feecb0d6af0, Pos: NewPositionFromString(""), Type1: "char", Type2: "", ChildNodes: []Node{}, }, 0x7feecb0d6af0, NewPositionFromString(""), []Node{}, }, } runNodeTests(t, nodes) }