mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
17 lines
253 B
Go
17 lines
253 B
Go
package utils_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils"
|
|
)
|
|
|
|
func TestGMTUnixTime(t *testing.T) {
|
|
t.Log(utils.GMTUnixTime(time.Now().Unix()))
|
|
}
|
|
|
|
func TestGMTTime(t *testing.T) {
|
|
t.Log(utils.GMTTime(time.Now()))
|
|
}
|