public async void FinancialReport()
        {
            var controller = new ReportController();
            var result     = await controller.FinancialReport();

            FinancialReportViewModel fin = null;

            try
            {
                fin = (FinancialReportViewModel)result.Data;
            }
            catch (Exception ex)
            {
                throw new Exception("FinancialReportViewModel failed to parse: " + ex.Message);
            }

            Assert.NotNull(fin);
            Assert.AreEqual(String.Empty, fin.ErrorMsg);
            Assert.AreEqual(10, fin.data.Count);
        }