You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
204 B

package regx
import (
"fmt"
"testing"
)
func TestRegx_IsLeapYear(t *testing.T) {
fmt.Println(regx.IsLeapYear(2020))
fmt.Println(regx.CheckBirthdayCode("20200231"))
//false 闰年2月只有29号
}