nswrap/ast/record_test.go

18 lines
251 B
Go
Raw Normal View History

2019-04-09 11:52:21 -04:00
package ast
import (
"testing"
)
func TestRecord(t *testing.T) {
nodes := map[string]Node{
`0x7fd3ab857950 '__sFILE'`: &Record{
Addr: 0x7fd3ab857950,
Type: "__sFILE",
ChildNodes: []Node{},
},
}
runNodeTests(t, nodes)
}