public void TotalTaxesTest() { var target = new StatisticsCalculator(_exampleData.Clients, _exampleData.Products, _exampleData.Invoices); Decimal expected = new Decimal(); // TODO: Initialize to an appropriate value Decimal actual; actual = target.TotalTaxes(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void TotalTaxesTest() { IEnumerable<Client> clients = null; // TODO: Initialize to an appropriate value IEnumerable<Product> products = null; // TODO: Initialize to an appropriate value IEnumerable<Invoice> invonces = null; // TODO: Initialize to an appropriate value StatisticsCalculator target = new StatisticsCalculator(clients, products, invonces); // TODO: Initialize to an appropriate value Decimal expected = new Decimal(); // TODO: Initialize to an appropriate value Decimal actual; actual = target.TotalTaxes(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }