2018-02-18 12:25:20 +00:00
|
|
|
package php5_test
|
|
|
|
|
|
|
|
import (
|
2020-12-20 12:26:26 +00:00
|
|
|
"io/ioutil"
|
2018-02-18 12:25:20 +00:00
|
|
|
"testing"
|
|
|
|
|
2020-05-13 17:18:53 +00:00
|
|
|
"github.com/z7zmey/php-parser/internal/php5"
|
2020-06-29 20:00:56 +00:00
|
|
|
"github.com/z7zmey/php-parser/internal/scanner"
|
2018-02-18 12:25:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkPhp5(b *testing.B) {
|
2020-12-20 12:26:26 +00:00
|
|
|
src, err := ioutil.ReadFile("test.php")
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal("can not read test.php: " + err.Error())
|
|
|
|
}
|
2018-02-18 12:25:20 +00:00
|
|
|
|
|
|
|
for n := 0; n < b.N; n++ {
|
2020-08-17 17:31:04 +00:00
|
|
|
lexer := scanner.NewLexer([]byte(src), "5.6", nil)
|
2020-07-02 21:20:32 +00:00
|
|
|
php5parser := php5.NewParser(lexer, nil)
|
2018-04-10 12:23:13 +00:00
|
|
|
php5parser.Parse()
|
2018-02-18 12:25:20 +00:00
|
|
|
}
|
|
|
|
}
|