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