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

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