コード例 #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));
        }
コード例 #2
0
ファイル: 4.7digitalExample.cs プロジェクト: 7digital/Liskov
 public void Is_a_smart_bundle_a_product()
 {
     var expectedPrice = 8.99M;
     var smartBundle = new SmartBundle(expectedPrice);
     Assert.That(smartBundle.Price, Is.EqualTo(expectedPrice));
 }