nswrap/ast/objc_bridge_mutable_attr_test.go

24 lines
464 B
Go
Raw Normal View History

2019-06-04 00:14:04 -04:00
package ast
import (
"testing"
)
func TestObjCBridgeMutableAttr(t *testing.T) {
nodes := map[string]testNode{
`0x7fc0a69091d1 <line:11:7, line:18:7> content`:
testNode{&ObjCBridgeMutableAttr{
Addr: 0x7fc0a69091d1,
Pos: NewPositionFromString("line:11:7, line:18:7"),
Content: " content",
ChildNodes: []Node{},
},
0x7fc0a69091d1,
NewPositionFromString("line:11:7, line:18:7"),
[]Node{},
},
}
runNodeTests(t, nodes)
}