go-utils/utils/date/formater_test.go

12 lines
179 B
Go

package date
import (
"testing"
"github.com/ehlxr/go-utils/utils/log"
)
func TestDateFormater(t *testing.T) {
log.Infof("now tims is %s", Formater("yyyy-MM-dd HH:mm:ss"))
}