nswrap/ast/block_command_comment_test.go

23 lines
454 B
Go
Raw Permalink 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{},
},
0x1069fae60,
NewPositionFromString("col:4, line:163:57"),
[]Node{},
2019-06-04 00:14:04 -04:00
},
2019-04-09 11:52:21 -04:00
}
runNodeTests(t, nodes)
}