Emit XML from a TRX report (#43)

This commit is contained in:
Patrick Stevens
2024-06-08 18:31:58 +01:00
committed by GitHub
parent 78b5e9b71f
commit 7c38982fe7
5 changed files with 530 additions and 17 deletions

View File

@@ -8,7 +8,7 @@ module internal Result =
| Ok _ -> None
| Error e -> Some e
let inline get<'r, 'e> (r : Result<'r, 'e>) : 'r option =
let get<'r, 'e> (r : Result<'r, 'e>) : 'r option =
match r with
| Ok r -> Some r
| Error _ -> None