public void GetSettings_WhenDbErrorsOut_ShouldThrowException()
        {
            //Arrange
            mockDataAccess
            .Setup(x => x.GetDataTable(
                       It.IsAny <string>(),
                       "prc_ISISSettingsGet",
                       CommandType.StoredProcedure,
                       null))
            .Throws <Exception>();

            //Act and Assert
            Assert.Throws <Exception>(() => codeTables.GetSettings());

            mockExceptionHandling.Verify();
        }