public void ClientsWithNoInvoicesTest()
 {
     var target = new StatisticsCalculator(_exampleData.Clients, _exampleData.Products, _exampleData.Invoices);
     IEnumerable<Client> expected = null; // TODO: Initialize to an appropriate value
     IEnumerable<Client> actual;
     actual = target.ClientsWithNoInvoices();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 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.");
 }
        public void SalesByClientTest()
        {
            var target = new StatisticsCalculator(_exampleData.Clients, _exampleData.Products, _exampleData.Invoices);
            var from = DateTime.Parse("2011-12-05");
            var to = DateTime.Parse("2011-12-08");
            var client = _exampleData.IcazaClient;

            var expectedClient = _exampleData.IcazaClient;
            var expectedInvoiceNumbers = new[] { 7, 8, 10, 15 };

            var actual = target.SalesByClient(client, from, to);

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