Ejemplo n.º 1
0
 public void LastAddedWaveformNameShouldBe(IAWG awg, string expectedValue)
 {
     if (expectedValue != "")
     {
         expectedValue = _utils.Quotify(expectedValue);//Waveform name comes back with quotes, need to add them to match
     }
     Assert.AreEqual(expectedValue, awg.WaveformListLast);
 }
 public void GPIBUSBHwVersionShouldBe(IAWG awg, string expectedHwVersion)
 {
     Assert.AreEqual(_utils.Quotify(expectedHwVersion), awg.GPIBUsbHwversion);
 }