Refactored code structure
This commit is contained in:
26
tests/benchmarks_test.go
Normal file
26
tests/benchmarks_test.go
Normal file
@ -0,0 +1,26 @@
|
||||
package tests_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/cli/q/src/build"
|
||||
"git.akyoto.dev/go/assert"
|
||||
)
|
||||
|
||||
func BenchmarkEmpty(b *testing.B) {
|
||||
compiler := build.New("benchmarks/empty.q")
|
||||
|
||||
for i := 0; i < b.N; i++ {
|
||||
_, err := compiler.Run()
|
||||
assert.Nil(b, err)
|
||||
}
|
||||
}
|
||||
|
||||
func BenchmarkExpressions(b *testing.B) {
|
||||
compiler := build.New("benchmarks/expressions.q")
|
||||
|
||||
for i := 0; i < b.N; i++ {
|
||||
_, err := compiler.Run()
|
||||
assert.Nil(b, err)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user