/// <summary>
        /// Expect the specified number of objects to be created in the specified property.
        /// </summary>
        /// <param name="hvo"></param>
        /// <param name="tag"></param>
        /// <param name="count"></param>
        /// <param name="message"></param>
        public void ExpectCreateObjectInCollection(int hvo, int tag, int count, string message)
        {
            CreateObjectInfo info = new CreateObjectInfo(hvo, tag, message, count);

            m_allowedProps.Add(info);
            m_createObjectVals.Add(info);
        }
		/// <summary>
		/// Expect the specified number of objects to be created in the specified property.
		/// </summary>
		/// <param name="hvo"></param>
		/// <param name="tag"></param>
		/// <param name="count"></param>
		/// <param name="message"></param>
		public void ExpectCreateObjectInCollection(int hvo, int tag, int count, string message)
		{
			CreateObjectInfo info = new CreateObjectInfo(hvo, tag, message, count);
			m_allowedProps.Add(info);
			m_createObjectVals.Add(info);
		}