示例#1
0
        public virtual void CloneTest()
        {
            int[]   set     = SetGenerator.GetRandomArray(TEST_SET_LENGTH);
            IBitset testSet = CreateSetFromIndices(set, TEST_SET_LENGTH);
            var     clone   = testSet.Clone();

            Assert.AreEqual(clone, testSet);
        }