Added more tests
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-07-05 12:14:34 +02:00
parent 5fd38282b6
commit 7a294061d6
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
3 changed files with 78 additions and 50 deletions

15
tests/tests_test.go Normal file
View file

@ -0,0 +1,15 @@
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")
}
}