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