public void Should_DecreseIn10LiterPrice_When_DecreaseLiterPriceIsCalled()
        {
            // Arrange
            Beer beer = new Beer(12, "Special Honey Beer", 400);

            // Act
            beer.DecreaseLiterPrice(10);

            // Assert
            Assert.Equal(2, beer.LiterPrice);
        }