public void CalculationService_return_total_price_of_scanned_items_thathasbundleoffers(double expected)
        {
            //given
            var sut = new CalculationService();

            //when
            var actual = sut.CalculateBundlePrice(productFactTable);

            //then
            Assert.Equal(expected, actual);
        }