示例#1
0
        //glennj 12/5/2013
        /// <summary>
        /// Compare updated clock multipler for the AWG against<para>
        /// the expected multipler.</para><para>
        /// Note: Written as if association with more than 1 clock was possible.</para>
        /// </summary>
        /// <param name="awg"></param>
        /// <param name="expectedValue"></param>
        /// <param name="clockNumber"></param>
        public void ClockMultiplerRateValueShouldBe(IAWG awg, string expectedValue, string clockNumber = "1")
        {
            string possibleErrorString = "Verifying the multipler for clock " + clockNumber;

            Assert.AreEqual(expectedValue, awg.ClockMultipler(clockNumber), possibleErrorString);
        }