package ast import ( "testing" ) func TestVerbatimLineComment(t *testing.T) { nodes := map[string]Node{ `0x108af4dd0 Text=" qos_class_self"`: &VerbatimLineComment{ Addr: 0x108af4dd0, Pos: NewPositionFromString("col:4, col:28"), Text: " qos_class_self", ChildNodes: []Node{}, }, } runNodeTests(t, nodes) }