Example #1
0
 public void GetRFStatusIndiviudalTest()
 {
     try
     {
         CryoStatus.GetRFStatusIndividual(Machine.RF.Cryo.CM1L4);
     }
     catch (Exception ex)
     {
         Assert.Fail("Expected no exception, but got: " + ex.Message);
     }
 }
Example #2
0
 public void GetRFStatusTest()
 {
     try
     {
         CryoStatus.GetRFStatus(Machine.RF.Sectors.Sector1L4);
     }
     catch (Exception ex)
     {
         Assert.Fail("Expected no exception, but got: " + ex.Message);
     }
 }
Example #3
0
 public void GetSixyAmpPcPermitStatus()
 {
     try
     {
         CryoStatus.GetSixtyAmpPCPermitStatus();
     }
     catch (Exception ex)
     {
         Assert.Fail("Expected no exception, but got: " + ex.Message);
     }
 }
Example #4
0
 public void GetIndividualSixtyAmpPCPermitStatusTest()
 {
     try
     {
         CryoStatus.GetIndividualSixtyAmpPCPermitStatus(Machine.Cryo.PCPermit.S12);
     }
     catch (Exception ex)
     {
         Assert.Fail("Expected no exception, but got: " + ex.Message);
     }
 }
Example #5
0
 public void GetSectorStatusIndividualTest()
 {
     try
     {
         CryoStatus.GetSectorStatusIndividual(Machine.Cryo.Sectors.Sector12, Machine.Cryo.Magnets.Magnet.CMAML3);
     }
     catch (Exception ex)
     {
         Assert.Fail("Expected no exception, but got: " + ex.Message);
     }
 }