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