go_dreamfactory/lego/utils/container/version/test_version.go
2022-06-07 20:18:22 +08:00

16 lines
239 B
Go

package version
import (
"fmt"
"testing"
"time"
)
func Test_Version(t *testing.T) {
versionA := "1.2.3a "
versionB := "1.2.3b "
fmt.Println(CompareStrVer(versionA, versionB))
time.LoadLocation("Local ")
fmt.Println(time.Now())
}