/// <summary>
        /// The get number of pictures related to this wrap.
        /// </summary>
        /// <param name="validationTarget">
        /// The validation target.
        /// </param>
        /// <param name="wtId">
        /// The wt id.
        /// </param>
        /// <returns>
        /// The <see cref="int"/>.
        /// </returns>
        protected int GetNumberOfPictures(IWtApi validationTarget, string wtId)
        {
            var wrapInfo = validationTarget.WrapInfoByTrackId(wtId);
            var retVal   = wrapInfo.NumOfPictures;

            return(retVal);
        }
示例#2
0
 public void TestInitialize()
 {
     wtApi = Get <IWtApi>();
 }
示例#3
0
 public void TestInitialize()
 {
     wtApi          = Get <IWtApi>();
     WrapTrackShell = Get <IWrapTrackWebShell>();
 }