22 lines
424 B
Go
22 lines
424 B
Go
package main
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/tetratelabs/wazero/internal/testing/maintester"
|
|
"github.com/tetratelabs/wazero/internal/testing/require"
|
|
)
|
|
|
|
// Test_main ensures the following will work:
|
|
//
|
|
// go run main.go
|
|
func Test_main(t *testing.T) {
|
|
stdout, _ := maintester.TestMain(t, main, "main")
|
|
|
|
for i := 0; i < 50; i++ {
|
|
require.True(t, strings.Contains(stdout, strconv.Itoa(i*2)))
|
|
}
|
|
}
|