Beispiel #1
0
        public void CalcSalesTaxTest()
        {
            ProductType productType = new ProductType();             // TODO: Initialize to an appropriate value
            Decimal     expected    = 110.0m;
            Decimal     actual;

            actual = Class1.CalcSalesTax(productType);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void TestMethod1()
        {
            decimal result = Class1.CalcSalesTax(ProductType.Desk);

            Assert.AreEqual(123.11m, result);
        }