mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Prepend Client and Server to tests ran message
This commit is contained in:
@@ -57,7 +57,9 @@ namespace Robust.UnitTesting
|
||||
|
||||
private string GetTestsRanString(IntegrationInstance instance, string running)
|
||||
{
|
||||
return $"Tests ran ({instance.TestsRan.Count}):\n" +
|
||||
var type = instance is ServerIntegrationInstance ? "Server " : "Client ";
|
||||
|
||||
return $"{type} tests ran ({instance.TestsRan.Count}):\n" +
|
||||
$"{string.Join('\n', instance.TestsRan)}\n" +
|
||||
$"Currently running: {running}";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user