public void GetRequestResponseTest()
 {
     var target = new LoggingDataProvider();
     int totalRowCount;
     List<Log> actual = target.GetLogs(null, null, null, null, null, null, null, 0, null, null, null, null, 1, 10,
                                       out totalRowCount);
     Assert.IsNotNull(actual);
     if (actual.Count > 0)
     {
         target.GetRequestByLogId(actual[0].LogId);
         target.GetResponseByLogId(actual[0].LogId);
     }
 }