i'm new to unit testing , i have a lot of unit tests, how can i find tests that took long time to respond ?
i try this:
dotnet test -l "console;verbosity=detailed"
its good but i need to filter the tests than take more than 2 milisec!
1- how to filter the tests that took more than 2milisec?
2- additionally , do you know a command line or any external tools that help me to create a report like that? (for example : a tools to generate some report that show some metrics and analysis )
thanks a lot