This commit is contained in:
parent
5fd38282b6
commit
7a294061d6
3 changed files with 78 additions and 50 deletions
15
tests/tests_test.go
Normal file
15
tests/tests_test.go
Normal 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")
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue