yao/xiang_test.go
2021-09-06 19:38:39 +08:00

13 lines
151 B
Go

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestMain(t *testing.T) {
assert.NotPanics(t, func() {
main()
})
}