update tests
This commit is contained in:
33
node/expr/cast/t_meta_test.go
Normal file
33
node/expr/cast/t_meta_test.go
Normal file
@@ -0,0 +1,33 @@
|
||||
package cast_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/z7zmey/php-parser/node/expr/cast"
|
||||
|
||||
"github.com/z7zmey/php-parser/meta"
|
||||
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
var nodes = []node.Node{
|
||||
&cast.Array{},
|
||||
&cast.Bool{},
|
||||
&cast.Double{},
|
||||
&cast.Int{},
|
||||
&cast.Object{},
|
||||
&cast.String{},
|
||||
&cast.Unset{},
|
||||
}
|
||||
|
||||
func TestMeta(t *testing.T) {
|
||||
expected := []meta.Meta{
|
||||
meta.NewComment("//comment\n", nil),
|
||||
meta.NewWhiteSpace(" ", nil),
|
||||
}
|
||||
for _, n := range nodes {
|
||||
n.AddMeta(expected)
|
||||
actual := n.GetMeta()
|
||||
assertEqual(t, expected, actual)
|
||||
}
|
||||
}
|
||||
16
node/expr/cast/t_position_test.go
Normal file
16
node/expr/cast/t_position_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package cast_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/z7zmey/php-parser/position"
|
||||
)
|
||||
|
||||
func TestPosition(t *testing.T) {
|
||||
expected := position.NewPosition(1, 1, 1, 1)
|
||||
for _, n := range nodes {
|
||||
n.SetPosition(expected)
|
||||
actual := n.GetPosition()
|
||||
assertEqual(t, expected, actual)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user