public void IndexTest()
        {
            ActionResult actual;
            DashboardController target = null;
            try
            {
                target = new DashboardController();
                actual = target.Index();

                Helpers.ControllerTestHelper.TestForEmptyViewAndModel(actual, target);
            }
            finally
            {
                if (target != null)
                {
                    target.Dispose();
                }
            }
        }
 public void DashboardControllerConstructorTest()
 {
     DashboardController target = new DashboardController();
     target.Dispose();
 }