nswrap/ast/array_filler_test.go
2019-06-04 00:14:04 -04:00

14 lines
219 B
Go

package ast
import (
"testing"
)
func TestArrayFiller(t *testing.T) {
i := 0
runNodeTest(t, Parse(`array filler`),
testNode{ &ArrayFiller{ ChildNodes: []Node{} },
0,NewPositionFromString(""),[]Node{}},
&i)
}