update tests
This commit is contained in:
41
node/expr/assign/t_meta_test.go
Normal file
41
node/expr/assign/t_meta_test.go
Normal file
@@ -0,0 +1,41 @@
|
||||
package assign_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/z7zmey/php-parser/node/expr/assign"
|
||||
|
||||
"github.com/z7zmey/php-parser/meta"
|
||||
|
||||
"github.com/z7zmey/php-parser/node"
|
||||
)
|
||||
|
||||
var nodes = []node.Node{
|
||||
&assign.Reference{},
|
||||
&assign.Assign{},
|
||||
&assign.BitwiseAnd{},
|
||||
&assign.BitwiseOr{},
|
||||
&assign.BitwiseXor{},
|
||||
&assign.Concat{},
|
||||
&assign.Div{},
|
||||
&assign.Minus{},
|
||||
&assign.Mod{},
|
||||
&assign.Mul{},
|
||||
&assign.Plus{},
|
||||
&assign.Pow{},
|
||||
&assign.ShiftLeft{},
|
||||
&assign.ShiftRight{},
|
||||
&assign.ShiftRight{},
|
||||
}
|
||||
|
||||
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/assign/t_position_test.go
Normal file
16
node/expr/assign/t_position_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package assign_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