go-view-server/utility/validate/validate_test.go

12 lines
170 B
Go

package validate
import (
"github.com/gogf/gf/v2/test/gtest"
"testing"
)
func TestIsEmail(t *testing.T) {
b := IsEmail("QTT123456@163.com")
gtest.Assert(true, b)
}