/// <summary>
        /// Note the expected value of an atomic property after the test.
        /// </summary>
        /// <param name="hvo"></param>
        /// <param name="tag"></param>
        /// <param name="newVal"></param>
        /// <param name="message"></param>
        public void ExpectAtomic(int hvo, int tag, int newVal, string message)
        {
            ReplaceAtomicInfo info = new ReplaceAtomicInfo(hvo, tag, message, newVal);

            m_allowedProps.Add(info);
            m_newAtomicVals.Add(info);
        }
		/// <summary>
		/// Note the expected value of an atomic property after the test.
		/// </summary>
		/// <param name="hvo"></param>
		/// <param name="tag"></param>
		/// <param name="newVal"></param>
		/// <param name="message"></param>
		public void ExpectAtomic(int hvo, int tag, int newVal, string message)
		{
			ReplaceAtomicInfo info = new ReplaceAtomicInfo(hvo, tag, message, newVal);
			m_allowedProps.Add(info);
			m_newAtomicVals.Add(info);
		}