nswrap/ast/block_command_comment_test.go

24 lines
453 B
Go
Raw Normal View History

2019-04-09 11:52:21 -04:00
package ast
import (
"testing"
)
func TestBlockCommandComment(t *testing.T) {
2019-06-04 00:14:04 -04:00
nodes := map[string]testNode{
`0x1069fae60 <col:4, line:163:57> Name="abstract"`:
testNode{&BlockCommandComment{
2019-04-09 11:52:21 -04:00
Addr: 0x1069fae60,
Pos: NewPositionFromString("col:4, line:163:57"),
Name: "abstract",
ChildNodes: []Node{},
},
2019-06-04 00:14:04 -04:00
0x1069fae60,
NewPositionFromString("col:4, line:163:57"),
[]Node{},
},
2019-04-09 11:52:21 -04:00
}
runNodeTests(t, nodes)
}