testfx
testfx copied to clipboard
MSTest framework and adapter
Hello all. Here is the original bug that I opened in TUnit https://github.com/thomhurst/TUnit/issues/3395 And they redirected me to here. **Disclaimer: I am using `TUnit.Playwright` package, but with `TUnit` package alone,...
This issue tracks few ideas for improving the performance of MSTest. - [ ] We shouldn't do any serialization for parameterized tests if appdomain is disabled. This will be v4...
Introduces a specialized test method attribute that wraps test execution in `Task.Run` with integrated timeout handling for non-cooperative cancellation scenarios. This provides an alternative to the global `UseCooperativeCancellation` setting by...
## Summary Add a specialized `TestMethodAttribute` to run the user code as part of a `Task.Run` allowing to stop wathching the task in case of timeout. ## Background and Motivation...
yes, there are probably more optimizations that can be done in the terminal logger, e.g. getting rid of the flatException type (if you did not do that already) _Originally posted...
As we keep adding more and more analyzers, I would like us to make sure they are written in a performant way and that we are not slowing down the...