| 1234567891011121314151617 |
- package mac
- import "testing"
- var (
- mm MachMeta
- )
- func TestGetMacInfoImmutablePart(t *testing.T) {
- GetMacInfoImmutablePart(&mm)
- t.Logf("%v", mm)
- }
- func TestGetMachInfoMutablePart(t *testing.T) {
- GetMachInfoMutablePart(&mm)
- t.Logf("%v", mm)
- }
|