package ast import ( "testing" ) func TestObjCObjectType(t *testing.T) { nodes := map[string]Node{ `0x10c101ab0 'NSObject'`: &ObjCObjectType{ Addr: 0x10c101ab0, Type: `NSObject`, ChildNodes: []Node{}, }, `0x7faa18805fc0 'id'`: &ObjCObjectType{ Addr: 0x7faa18805fc0, Type: `id`, ChildNodes: []Node{}, }, } runNodeTests(t, nodes) }