36 lines
616 B
Go
Raw Normal View History

2024-06-16 14:57:33 +00:00
package main_test
import (
"testing"
"git.akyoto.dev/cli/q/src/build"
2024-06-28 13:34:25 +00:00
"git.akyoto.dev/go/assert"
2024-06-16 14:57:33 +00:00
)
func BenchmarkEmpty(b *testing.B) {
compiler := build.New("tests/benchmarks/empty.q")
for i := 0; i < b.N; i++ {
2024-06-28 13:34:25 +00:00
_, err := compiler.Run()
assert.Nil(b, err)
2024-06-16 14:57:33 +00:00
}
}
func BenchmarkExpressions(b *testing.B) {
compiler := build.New("tests/benchmarks/expressions.q")
for i := 0; i < b.N; i++ {
2024-06-28 13:34:25 +00:00
_, err := compiler.Run()
assert.Nil(b, err)
2024-06-16 14:57:33 +00:00
}
}
2024-06-20 09:29:39 +00:00
func BenchmarkHello(b *testing.B) {
compiler := build.New("examples/hello")
for i := 0; i < b.N; i++ {
2024-06-28 13:34:25 +00:00
_, err := compiler.Run()
assert.Nil(b, err)
2024-06-20 09:29:39 +00:00
}
}