Ejemplo n.º 1
0
        /// <summary>
        /// Compares all values in the data record against the values in another datarecord with known true values
        /// </summary>
        /// <param name="datTrueRecord">The known true record</param>
        public void CompareValuesToTrueRecord(DataRecord datTrueRecord)
        {
            String strSkippedKeys, strException;

            strException   = "";
            strSkippedKeys = "";

            foreach (string strKey in this)
            {
                if (datTrueRecord.ContainsKey(strKey) == true)                            //True record has this key, compare it
                {
                    if (this.String(strKey).CompareTo(datTrueRecord.String(strKey)) != 0) //Values don't match
                    {
                        strException = strException + "The values in Key '" + strKey + "' do not match.  Test (local) value: '" + this.String(strKey) + "'  True (external) value: '" + datTrueRecord.String(strKey) + "\n";
                    }
                }
                else                     //True record does not have this key report it
                {
                    strSkippedKeys = strSkippedKeys + strKey + ", ";
                }
            }

            if (strSkippedKeys.CompareTo("") != 0)                //skipped keys, trim trailing comma
            {
                strSkippedKeys = strSkippedKeys.Substring(0, strSkippedKeys.Length - 2);

                strException = strException + "Skipped comparing some values, True data record (external) does not contain the following keys: " + strSkippedKeys;
            }

            if (strException.CompareTo("") != 0)                //Found discrepencies, throw an exception
            {
                throw new Exception(strException);
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Compares the data record against a known true record.  Each key or index from each data record is compared to ensure it exists in the other.
        /// </summary>
        /// <param name="datTrueRecord">The known true record</param>
        public void CompareKeysToTrueRecord(DataRecord datTrueRecord)
        {
            string strLocalKeys, strExternalKeys, strException;

            strException = "";

            //Look through all local keys to see if external data record has them
            strLocalKeys = "";
            foreach (string strKey in this)
            {
                if (datTrueRecord.ContainsKey(strKey) == false)                   //External data record does not have this key
                {
                    strLocalKeys = strLocalKeys + strKey + ", ";
                }
            }

            if (strLocalKeys.CompareTo("") != 0)                //found keys, trim trailing comma
            {
                strLocalKeys = strLocalKeys.Substring(0, strLocalKeys.Length - 2);

                strException = strException + "Test data record (local) contains the following keys which the True data record (external) does not have: " + strLocalKeys;
            }

            //Look through all external keys to see if local record has them
            strExternalKeys = "";
            foreach (string strKey in datTrueRecord)
            {
                if (this.ContainsKey(strKey) == false)                   //External data record has a key that isn't in local
                {
                    strExternalKeys = strExternalKeys + strKey + ", ";
                }
            }

            if (strExternalKeys.CompareTo("") != 0)                //found keys, trim trailing comma
            {
                strExternalKeys = strExternalKeys.Substring(0, strExternalKeys.Length - 2);

                strException = strException + "True data record (external) contains the following keys which the Test data record (local) does not have: " + strLocalKeys;
            }

            if (strException.CompareTo("") != 0)                //Found discrepencies, throw an exception
            {
                throw new Exception(strException);
            }
        }
Ejemplo n.º 3
0
		/// <summary>
		/// Compares all values in the data record against the values in another datarecord with known true values
		/// </summary>
		/// <param name="datTrueRecord">The known true record</param>
		public void CompareValuesToTrueRecord(DataRecord datTrueRecord) {
			String strSkippedKeys, strException;

			strException = "";
			strSkippedKeys = "";

			foreach (string strKey in this) {
				if (datTrueRecord.ContainsKey(strKey) == true) {  //True record has this key, compare it
					if (this.String(strKey).CompareTo(datTrueRecord.String(strKey)) != 0) { //Values don't match
						strException = strException + "The values in Key '" + strKey + "' do not match.  Test (local) value: '" + this.String(strKey) + "'  True (external) value: '" + datTrueRecord.String(strKey) + "\n";
					}
				} else { //True record does not have this key report it
					strSkippedKeys = strSkippedKeys + strKey + ", ";
				}
			}

			if (strSkippedKeys.CompareTo("") != 0) {  //skipped keys, trim trailing comma
				strSkippedKeys = strSkippedKeys.Substring(0, strSkippedKeys.Length - 2);

				strException = strException + "Skipped comparing some values, True data record (external) does not contain the following keys: " + strSkippedKeys;
			}

			if (strException.CompareTo("") != 0) {  //Found discrepencies, throw an exception
				throw new Exception(strException);
			}
		}
Ejemplo n.º 4
0
		/// <summary>
		/// Compares the data record against a known true record.  Each key or index from each data record is compared to ensure it exists in the other.
		/// </summary>
		/// <param name="datTrueRecord">The known true record</param>
		public void CompareKeysToTrueRecord(DataRecord datTrueRecord) {
			string strLocalKeys, strExternalKeys, strException;

			strException = "";

			//Look through all local keys to see if external data record has them
			strLocalKeys = "";
			foreach (string strKey in this) {
				if (datTrueRecord.ContainsKey(strKey) == false) { //External data record does not have this key
					strLocalKeys = strLocalKeys + strKey + ", ";
				}
			}

			if (strLocalKeys.CompareTo("") != 0) {  //found keys, trim trailing comma
				strLocalKeys = strLocalKeys.Substring(0, strLocalKeys.Length - 2);

				strException = strException + "Test data record (local) contains the following keys which the True data record (external) does not have: " + strLocalKeys;
			}

			//Look through all external keys to see if local record has them
			strExternalKeys = "";
			foreach (string strKey in datTrueRecord) {
				if (this.ContainsKey(strKey) == false) { //External data record has a key that isn't in local
					strExternalKeys = strExternalKeys + strKey + ", ";
				}
			}

			if (strExternalKeys.CompareTo("") != 0) {  //found keys, trim trailing comma
				strExternalKeys = strExternalKeys.Substring(0, strExternalKeys.Length - 2);

				strException = strException + "True data record (external) contains the following keys which the Test data record (local) does not have: " + strLocalKeys;
			}

			if (strException.CompareTo("") != 0) {  //Found discrepencies, throw an exception
				throw new Exception(strException);
			}
		}