
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
12 lines
167 B
Plaintext
12 lines
167 B
Plaintext
[source,csharp]
|
|
----
|
|
public string GetReadableStatus(Job j)
|
|
{
|
|
if (j.IsRunning)
|
|
{
|
|
return "Running";
|
|
}
|
|
return j.HasErrors ? "Failed" : "Succeeded";
|
|
}
|
|
----
|