public void GetReportHtml_WithoutModel_ReportIsGenerated()
        {
            ReportResourcesRepository rep = new ReportResourcesRepository();
            ReportGenerator target = new ReportGenerator(rep);
            string reportName = "Report1";

            var result = target.GetReportHtml(null, reportName);

            // Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void GetReportHtml_WithManipulatedModel_ReportIsGenerated()
        {
            ReportResourcesRepository rep = new ReportResourcesRepository();
            ReportGenerator target = new ReportGenerator(rep);
            string reportName = "CustomerReport2";

            var customer = new CustomerRepository().GetCustomer();
            var result = target.GetReportHtml(customer, reportName);
            // Assert.Inconclusive("Verify the correctness of this test method.");
        }