Beispiel #1
0
        /// <summary>
        ///GetEnumerator 的测试
        ///</summary>
        public void GetEnumeratorTestHelper <KeyT>()
        {
            SafeHashSet <KeyT> target   = new SafeHashSet <KeyT>(); // TODO: 初始化为适当的值
            IEnumerator <KeyT> expected = null;                     // TODO: 初始化为适当的值
            IEnumerator <KeyT> actual;

            actual = target.GetEnumerator();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("验证此测试方法的正确性。");
        }