Ejemplo n.º 1
0
 public ResultEntity(HttpStatusCode httpStatusCode,
     byte[] currentHtml,
     long elapsedTimeInMilliseconds,
     HttpPostMethod httpPostMethod,
     string url,
     string scenarioName,
     Guid testRunGuid,
     string stepName,
     DateTime date)
 {
     PartitionKey = Guid.NewGuid().ToString();
     RowKey = Guid.NewGuid().ToString();
     Timestamp = DateTime.Now;
     Date = date;
     HttpStatusCode = httpStatusCode.ToString();
     CurrentHtml = currentHtml;
     ElapsedTimeInMilliseconds = elapsedTimeInMilliseconds;
     HttpPostMethod = httpPostMethod.ToString();
     Url = url;
     ScenarioName = scenarioName;
     TestRunGuid = testRunGuid;
     StepName = stepName;
 }