Select Git revision
sysutil_test.go
Forked from
Debian Go Packaging Team / packages / golang-github-chromedp-sysutil
Source project has a limited visibility.
sysutil_test.go 245 B
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))
}