public void Should_Be_Calculate_Comsumable(string name, long distance, string consumableApi, int MGLT,
                                                   long expected)
        {
            var consumable = new Consumable(consumableApi);
            var starship   = new Starship(name, MGLT, string.Empty, consumable);

            var result = starship.CalculateConsumable(distance);

            Assert.Equal(result, expected);
        }