
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
7 lines
191 B
Plaintext
7 lines
191 B
Plaintext
[source,vbnet]
|
|
----
|
|
Public Function GetReadableStatus(job As Job) As String
|
|
Return If(job.IsRunning, "Running", If(job.HasErrors, "Failed", "Succeeded")) ' Noncompliant
|
|
End Function
|
|
----
|