mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
17 lines
277 B
Java
Executable File
17 lines
277 B
Java
Executable File
package cn.hutool.system;
|
|
|
|
import cn.hutool.core.lang.Console;
|
|
import cn.hutool.system.oshi.OshiUtil;
|
|
import org.junit.Ignore;
|
|
import org.junit.Test;
|
|
|
|
@Ignore
|
|
public class OshiPrintTest {
|
|
|
|
@Test
|
|
@Ignore
|
|
public void printCpuInfo(){
|
|
Console.log(OshiUtil.getCpuInfo());
|
|
}
|
|
}
|