Files
EdgeNode/internal/utils/mem/system_test.go
GoEdgeLab c19be78e0d v1.4.1
2024-07-27 15:42:50 +08:00

20 lines
483 B
Go

// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
package memutils_test
import (
"testing"
"github.com/TeaOSLab/EdgeNode/internal/utils/mem"
)
func TestSystemMemoryGB(t *testing.T) {
t.Log(memutils.SystemMemoryGB())
t.Log(memutils.SystemMemoryGB())
t.Log(memutils.SystemMemoryGB())
t.Log(memutils.SystemMemoryBytes())
t.Log(memutils.SystemMemoryBytes())
t.Log(memutils.SystemMemoryBytes()>>30, "GB")
t.Log("available:", memutils.AvailableMemoryGB())
}