nswrap/ast/objc_bool_literal_expr_test.go

37 lines
860 B
Go
Raw Permalink Normal View History

2019-06-04 00:14:04 -04:00
package ast
import (
"testing"
)
func TestObjCBoolLiteralExpr(t *testing.T) {
nodes := map[string]testNode{
`0x7fcd0f9e7fe8 <col:13> 'BOOL':'signed char' __objc_yes`: testNode{&ObjCBoolLiteralExpr{
Addr: 0x7fcd0f9e7fe8,
Pos: NewPositionFromString("col:13"),
Type: "BOOL",
Type2: ":'signed char'",
Attr: " __objc_yes",
ChildNodes: []Node{},
2019-06-04 00:14:04 -04:00
},
0x7fcd0f9e7fe8,
NewPositionFromString("col:13"),
[]Node{},
2019-06-04 00:14:04 -04:00
},
`0x7fcd0f9ed000 <col:13> 'BOOL':'signed char' __objc_no`: testNode{&ObjCBoolLiteralExpr{
Addr: 0x7fcd0f9ed000,
Pos: NewPositionFromString("col:13"),
Type: "BOOL",
Type2: ":'signed char'",
Attr: " __objc_no",
ChildNodes: []Node{},
2019-06-04 00:14:04 -04:00
},
0x7fcd0f9ed000,
NewPositionFromString("col:13"),
[]Node{},
2019-06-04 00:14:04 -04:00
},
}
runNodeTests(t, nodes)
}