nswrap/ast/objc_interface_type_test.go

19 lines
283 B
Go
Raw Normal View History

2019-05-31 10:21:04 -04:00
package ast
import (
"testing"
)
func TestObjCInterfaceType(t *testing.T) {
nodes := map[string]Node{
`0x7fdef0862430 'NSObject'`:
&ObjCInterfaceType{
Addr: 0x7fdef0862430,
Type: "NSObject",
ChildNodes: []Node{},
},
}
runNodeTests(t, nodes)
}