mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 01:20:26 +08:00
15 lines
318 B
Go
15 lines
318 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package utils
|
|
|
|
import "testing"
|
|
|
|
func TestSystemMemoryGB(t *testing.T) {
|
|
t.Log(SystemMemoryGB())
|
|
t.Log(SystemMemoryGB())
|
|
t.Log(SystemMemoryGB())
|
|
t.Log(SystemMemoryBytes())
|
|
t.Log(SystemMemoryBytes())
|
|
t.Log(SystemMemoryBytes()>>30, "GB")
|
|
}
|