Пример #1
0
        public void TestSetHiLo()
        {
            BitArrayBin toTest = new BitArrayBin(50);

            toTest.SetBit(0, true);
            toTest.SetBit(100, true);
            toTest.SetBit(150, true);
            Assert.IsTrue(toTest.GetBit(0));

            toTest.SetBit(0, true);
            Assert.IsTrue(toTest.GetBit(0));
        }