package computer
import (
"fmt"
"testing"
)
func TestCpuID(t *testing.T) {
id, err := CpuID()
if err != nil {
t.Fatal(err)
}
fmt.Println(id)