Beispiel #1
0
		/// <exception cref="System.Exception"></exception>
		protected override object CreateItem()
		{
			TADateItem item = new TADateItem();
			item._typed = first;
			item._untyped = first;
			return item;
		}
        /// <exception cref="System.Exception"></exception>
        protected override void AssertRetrievedItem(object obj)
        {
            TADateItem item = (TADateItem)obj;

            Assert.IsNull(item._untyped);
            Assert.AreEqual(EmptyValue(), item._typed);
        }
        /// <exception cref="System.Exception"></exception>
        protected override void AssertItemValue(object obj)
        {
            TADateItem item = (TADateItem)obj;

            Assert.AreEqual(first, item.GetUntyped());
            Assert.AreEqual(first, item.GetTyped());
        }
        /// <exception cref="System.Exception"></exception>
        protected override object CreateItem()
        {
            TADateItem item = new TADateItem();

            item._typed   = first;
            item._untyped = first;
            return(item);
        }