package ast import ( "testing" ) func TestWhileStmt(t *testing.T) { nodes := map[string]testNode{ `0x7fa1478273a0 `: testNode{&WhileStmt{ Addr: 0x7fa1478273a0, Pos: NewPositionFromString("line:7:4, line:11:4"), ChildNodes: []Node{}, }, 0x7fa1478273a0, NewPositionFromString("line:7:4, line:11:4"), []Node{}, }, } runNodeTests(t, nodes) }