Ejemplo n.º 1
0
        public void TestReserve()
        {
            NcByteCollection instance = new NcByteCollection();
            long             bytes    = 11 * 1024;

            instance.Reserve(bytes);

            Assert.AreEqual(instance.BlockLengthTotal, bytes);
        }