コード例 #1
0
        public void ShouldCalculateTotalsPerItem()
        {
            var prices = new MockPrices().GetMockPrices();
            var calc   = new CartTotalCalculator(prices);

            var total = calc.GetTotalForItem(new KeyValuePair <string, int>("A99", 4));

            Assert.AreEqual(1.80M, total);
        }