Exemple #1
0
        public void BoolArray_returns_array_of_bools_representing_BitArray()
        {
            var ba = new BitArray(true, true, false, true, false);

            Assert.Equal(new [] { true, true, false, true, false }, ba.BoolArray());
        }