public void SaveExceptionTest()
 {
     var target = new LoggingDataProvider();
     var exception = new ExceptionLog(new ArgumentException("Test Exception"), "Test", "TestMethod",
                                      Severity.Major, "Test Title");
     target.SaveException(exception);
 }