Time formatting in peer download test helper
This commit is contained in:
parent
519069f97f
commit
9b03fff032
|
@ -41,7 +41,7 @@ namespace DistTestCore.Helpers
|
||||||
float sizeInMB = size.ToMB();
|
float sizeInMB = size.ToMB();
|
||||||
var timePerMB = timePerDownload / sizeInMB;
|
var timePerMB = timePerDownload / sizeInMB;
|
||||||
|
|
||||||
test.Log($"Performed {numberOfDownloads} downloads of {size} in {timeTaken.TotalSeconds} seconds, for an average of {timePerMB} seconds per MB.");
|
test.Log($"Performed {numberOfDownloads} downloads of {size} in {timeTaken.TotalSeconds} seconds, for an average of {timePerMB.TotalSeconds} seconds per MB.");
|
||||||
|
|
||||||
Assert.That(timePerMB, Is.LessThan(CodexContainerRecipe.MaxDownloadTimePerMegabyte), "MaxDownloadTimePerMegabyte performance threshold breached.");
|
Assert.That(timePerMB, Is.LessThan(CodexContainerRecipe.MaxDownloadTimePerMegabyte), "MaxDownloadTimePerMegabyte performance threshold breached.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue