Sign in
chromium
/
external
/
github.com
/
knq
/
sysutil
/
0218e141a794643e8c0fa283b9cd076fc0df662d
/
.
/
sysutil_test.go
blob: 02ee57fad4c8a5df206a37708471f966e11b5d1b [
file
] [
log
] [
blame
]
package sysutil
import (
"testing"
"time"
)
// TestBootTime tests the boot time.
func TestBootTime(t *testing.T) {
t.Logf("boot time: %s", BootTime().Format(time.RFC3339Nano))
t.Logf("now: %s", time.Now().Format(time.RFC3339Nano))
}