Example #1
0
        public void Test(int mass, int expectedFuel, int expectedTotalFuel)
        {
            var fuel = Part2.Fuel(mass);

            fuel.ShouldBe(expectedFuel);

            var total = Part2.TotalFuel(fuel);

            total.ShouldBe(expectedTotalFuel);
        }