go-utils/common/uptime_test.go

13 lines
177 B
Go
Raw Permalink Normal View History

package common
import (
2021-10-24 12:51:17 +00:00
"fmt"
"testing"
"time"
)
func TestCheckUptime(T *testing.T) {
uptime := Uptime(time.Date(2016, 6, 2, 1, 1, 1, 1, time.UTC))
2021-10-24 12:51:17 +00:00
fmt.Println(uptime)
}