24 lines
427 B
Go

package tests_test
import (
"path/filepath"
"testing"
)
var examples = []struct {
Name string
ExpectedOutput string
ExpectedExitCode int
}{
{"hello", "Hello", 0},
{"fibonacci", "", 55},
}
func TestExamples(t *testing.T) {
for _, test := range examples {
t.Run(test.Name, func(t *testing.T) {
run(t, filepath.Join("..", "examples", test.Name), test.ExpectedOutput, test.ExpectedExitCode)
})
}
}