Can you manually for a checkpoint in the log for anything?
Let me give my scenario to make this more clear. Currently I have a situation when I am exporting a report to a CSV, creating a list of all data from that CSV and comparing it to an expected list.
Currently I have something along the lines of:
if list_a == list_b:
Log.Message("The two lists match")
It is more complex than this but basically this is it.
The fact this data matches is the main point of the test and instead of just a log message I would like there to be the green checkbox symbol in the test results. This is just to help identify critical steps in tests, particularly those tied to requirements.
Is there a way to do this?
I just had a random thought to check if there is a Log.Checkpoint function. There apparently is. I guess I answered my own question.