Currently I am executing some test in my dll via command line like so
dotnet test UnitTest123/bin/Debug/UnitTest123.dll --logger html
After executing I get my results in my TestResults folder where my project is in my local machine.. I want to give my report some meaning full name like UnitTest123 but I get TestResult_MachineName-WS102_20201008_184559
Another Thing I wanted to know was how can I log to the report.. example if I have to log a message so it will show in the report how can I do this? I have tried TestContext but it did not work..
Thanks for any help :)