Exemple #1
0
 public void NewAndDispose()
 {
     using var adl = new Adl();
 }
Exemple #2
0
 public void GetPowerUsage()
 {
     using var adl = new Adl();
     Assert.NotNull(adl.GetPowerUsage(0));
 }
Exemple #3
0
 public void GetFanpcnt()
 {
     using var adl = new Adl();
     Assert.NotNull(adl.GetFanpcnt(0));
 }
Exemple #4
0
 public void GetTempC()
 {
     using var adl = new Adl();
     Assert.NotNull(adl.GetTempC(0));
 }
Exemple #5
0
 public void GetPciId()
 {
     using var adl = new Adl();
     Assert.NotEmpty(adl.GetPciId(0));
 }
Exemple #6
0
 public void GpuName()
 {
     using var adl = new Adl();
     Assert.NotEmpty(adl.GpuName(0));
 }