Exemplo n.º 1
0
        public void Test_after_applying_product_price_is_not_updated()
        {
            _testContext.Arrange("classic", "blah", 3, 4);

            _testContext.ActApply();

            _testContext.AssertProductPriceIsNotUpdated();
        }
Exemplo n.º 2
0
        public void Test_when_rule_applies_product_count_is_updated()
        {
            _testContext.Arrange("classic", "classic", 3, 3, 2);

            _testContext.ActApply();

            _testContext.AssertProductCountIsCorrect(2);
        }