package ast import ( "testing" ) func TestCaseStmt(t *testing.T) { nodes := map[string]Node{ `0x7fc8b5094688 `: &CaseStmt{ Addr: 0x7fc8b5094688, Pos: NewPositionFromString("line:11:5, line:12:21"), ChildNodes: []Node{}, }, } runNodeTests(t, nodes) }