package ast import ( "testing" ) func TestObjCCategoryDecl(t *testing.T) { nodes := map[string]Node{ `0x7fdef0862430 col:16 NSObject`: &ObjCCategoryDecl{ Addr: 0x7fdef0862430, Pos: NewPositionFromString("line:120:1, col:16"), Position2: "", Name: "NSObject", ChildNodes: []Node{}, }, } runNodeTests(t, nodes) }