gopkg/system/memory_test.go

26 lines
440 B
Go

// Package system...
//
// Description : system...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2021-10-12 7:09 下午
package system
import (
"encoding/json"
"fmt"
"testing"
)
// TestGetMemoryInfo ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 7:09 下午 2021/10/12
func TestGetMemoryInfo(t *testing.T) {
r, _ := GetMemoryInfo()
byteData, _ := json.Marshal(r)
fmt.Println(string(byteData))
}