php-parser/internal/php8/php8_bench_test.go

31 lines
564 B
Go

package php8_test
import (
"io/ioutil"
"testing"
"github.com/VKCOM/php-parser/internal/php8"
"github.com/VKCOM/php-parser/pkg/conf"
"github.com/VKCOM/php-parser/pkg/version"
)
func BenchmarkPhp8(b *testing.B) {
src, err := ioutil.ReadFile("test.php")
if err != nil {
b.Fatal("can not read test.php: " + err.Error())
}
for n := 0; n < b.N; n++ {
config := conf.Config{
Version: &version.Version{
Major: 8,
Minor: 8,
},
}
lexer := php8.NewLexer(src, config)
php8parser := php8.NewParser(lexer, config)
php8parser.Parse()
}
}