Example #1
0
        /// <summary>
        ///ToArray 的测试
        ///</summary>
        public void ToArrayTestHelper <KeyT>()
        {
            SafeHashSet <KeyT> target = new SafeHashSet <KeyT>(); // TODO: 初始化为适当的值

            KeyT[] expected = null;                               // TODO: 初始化为适当的值
            KeyT[] actual;
            actual = target.ToArray();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("验证此测试方法的正确性。");
        }