public void GivenSharesSumInProperRange_DuringCreating_ShouldCreateCollection()
        {
            var shares = new HashSet <MacroNutrientShare>
            {
                new MacroNutrientShare(MacroNutrient.Carbohydrate, 0.2),
                new MacroNutrientShare(MacroNutrient.Fat, 0.1)
            };

            var sharesCollection = new MacroNutrientsSharesCollection(shares);

            sharesCollection.Should().NotBeNull();
        }