コード例 #1
0
        /// <exception cref="System.Exception"></exception>
        protected override void AssertItemValue(object obj)
        {
            TADateArrayItem item = (TADateArrayItem)obj;

            for (int i = 0; i < data.Length; i++)
            {
                Assert.AreEqual(data[i], item.GetTyped()[i]);
                Assert.AreEqual(data[i], (DateTime)item.GetUntyped()[i]);
            }
        }