示例#1
0
 /// <summary>
 /// Gets and compares the options that are enabled versus an expected valueon the external source
 ///
 /// *OPT?
 /// </summary>
 /// <param name="extSource">the EXTSOURCE object</param>
 /// <param name="expectedOptions">Expected Options enabled on the ext source</param>
 public void TheExtSrcOptionsShouldBe(IEXTSOURCE extSource, string expectedOptions)
 {
     extSource.GetExtSrcOptQuery();
     Assert.AreEqual(expectedOptions, extSource.ExtSrcOptions);
 }
示例#2
0
 /// <summary>
 /// Gets the options that are enabled on the external source
 ///
 /// *OPT?
 /// </summary>
 /// <param name="extSource">the EXTSOURCE object</param>
 /// <returns>Options enabled on the ext source</returns>
 public void GetExtSrcOptQuery(IEXTSOURCE extSource)
 {
     extSource.GetExtSrcOptQuery();
 }