public void OutputFilterBandPassRangeShouldBeR13to18GHz(IAWG awg, OutputFilterBandPassRange expectedFilterRange)
        {
            var expectedSyntax = "R13TO18GHZ";

            string possibleErrorString = "Output filter band pass range " + awg.OutputFilterBandPassRange + " found not the expected filter path of " + expectedSyntax;

            Assert.AreEqual(expectedSyntax, awg.OutputFilterBandPassRange, possibleErrorString);
        }
        public void SetOutputFilterBandPassRangeR10to14GHz(IAWG awg, string outputIndex, OutputFilterBandPassRange filterRange)
        {
            string expectedSyntax = "R10to14GHz";

            awg.SetOutputFilterBandPassRangeR10to14GHz(outputIndex, expectedSyntax);
        }