Ejemplo n.º 1
0
        public void TestNextSector(ulong last, ulong next)
        {
            last.Should().BeLessThan(next);

            var calculator = new PartitionSegmentCalculator(256, ulong.MaxValue);

            calculator.GetNextSector(last).Should().Be(next);
        }