I'm looking to print all the test cases along with their status(pass/fail) like below:
TestCaseOne --> Passed
TestCaseTwo --> Failed
TestCaseThree --> Passed
I have tried this from this link console runner test , but it only prints the test names, without the status.
I also tried the same with "dotnet test" from this link dotnet test
Is there a way to print the output as shown above?
EDIT: I realised that you are after a very specific output format.
will produce something like the following:
The part interesting for you is:
We could pass this via
grepandawkto achieve the desired format: