Ejemplo n.º 1
0
        public void Is_a_smart_bundle_a_product()
        {
            var expectedPrice = 8.99M;
            var smartBundle   = new SmartBundle(expectedPrice);

            Assert.That(smartBundle.Price, Is.EqualTo(expectedPrice));
        }
Ejemplo n.º 2
0
 public void Is_a_smart_bundle_a_product()
 {
     var expectedPrice = 8.99M;
     var smartBundle = new SmartBundle(expectedPrice);
     Assert.That(smartBundle.Price, Is.EqualTo(expectedPrice));
 }