public void SalesInTest()
 {
     var target = new StatisticsCalculator(_exampleData.Clients, _exampleData.Products, _exampleData.Invoices);
     DateTime date = new DateTime(); // TODO: Initialize to an appropriate value
     SalesByDateSummary expected = null; // TODO: Initialize to an appropriate value
     SalesByDateSummary actual;
     actual = target.SalesIn(date);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void SalesInTest()
 {
     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
     DateTime date = new DateTime(); // TODO: Initialize to an appropriate value
     SalesByDateSummary expected = null; // TODO: Initialize to an appropriate value
     SalesByDateSummary actual;
     actual = target.SalesIn(date);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }