/// <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); }
/// <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(); }