i'd like to create a string from a table, something similar to this example:
Passed | Failed | Skipped | |
---|---|---|---|
Test1 | 13 | 4 | 10 |
Test2 | 10 | 12 | |
Test3 | 20 | 9 | |
Test4 | 25 | 11 |
From this table i'd like to have this strings like this
String | |
---|---|
Test1 | 13 Passed - 4 Failed - 10 Skipped |
Test2 | 10 Passed - 12 Failed |
Test3 | 20 Passed - 9 Skipped |
Test4 | 25 Failed - 11 Skipped |