38 lines
605 B
Go
38 lines
605 B
Go
package scanner_test
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/z7zmey/php-parser/freefloating"
|
|
"github.com/z7zmey/php-parser/scanner"
|
|
)
|
|
|
|
func TestToken(t *testing.T) {
|
|
tkn := &scanner.Token{
|
|
Value: `foo`,
|
|
StartLine: 1,
|
|
EndLine: 1,
|
|
StartPos: 0,
|
|
EndPos: 3,
|
|
}
|
|
|
|
c := []freefloating.String{
|
|
{
|
|
Value: "test comment",
|
|
StringType: freefloating.CommentType,
|
|
Position: nil,
|
|
},
|
|
}
|
|
|
|
tkn.FreeFloating = c
|
|
|
|
if !reflect.DeepEqual(tkn.FreeFloating, c) {
|
|
t.Errorf("comments are not equal\n")
|
|
}
|
|
|
|
if tkn.String() != `foo` {
|
|
t.Errorf("token value is not equal\n")
|
|
}
|
|
}
|