mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-08-28 00:51:13 +08:00
12 lines
170 B
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)
|
|
}
|