php-parser/internal/php7/php7_bench_test.go
2023-03-31 16:50:08 +02:00

31 lines
619 B
Go

package php7_test
import (
"io/ioutil"
"path/filepath"
"testing"
"github.com/laytan/php-parser/internal/php7"
"github.com/laytan/php-parser/pkg/conf"
"github.com/laytan/php-parser/pkg/version"
)
func BenchmarkPhp7(b *testing.B) {
src, err := ioutil.ReadFile(filepath.Join("testdata", "test.php"))
if err != nil {
b.Fatal("can not read testdata/test.php: " + err.Error())
}
for n := 0; n < b.N; n++ {
config := conf.Config{
Version: &version.Version{
Major: 7,
Minor: 4,
},
}
lexer := php7.NewLexer(src, config)
php7parser := php7.NewParser(lexer, config)
php7parser.Parse()
}
}