gopkg/system/host_test.go

26 lines
434 B
Go
Raw Permalink Normal View History

2021-11-23 16:33:01 +08:00
// Package system...
//
// Description : system...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2021-10-12 7:58 下午
package system
import (
"encoding/json"
"fmt"
"testing"
)
// TestGetHostInfo ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 7:59 下午 2021/10/12
func TestGetHostInfo(t *testing.T) {
r, _ := GetHostInfo()
byteData, _ := json.Marshal(r)
fmt.Println(string(byteData))
}