q/tests/tests_test.go
Eduard Urbach 7a294061d6
All checks were successful
/ test (push) Successful in 15s
Added more tests
2025-07-05 12:14:34 +02:00

15 lines
No EOL
186 B
Go

package tests_test
import (
"testing"
)
var tests = []testRun{
{"sum", "", "", 10},
}
func TestTests(t *testing.T) {
for _, test := range tests {
test.Run(t, test.Name+".q")
}
}