Youssef Victor

Results 913 comments of Youssef Victor

> Did you see anyone having actual test with 1milion data rows? Unlikely 😄 I will probably try to get the average and maximum number of tests in a single...

> A fail fast extension could listen to test node updates, if any are failed, cancel the test run. Isn't that achievable simply by `--maximum-failed-tests 1`? If your real scenario...

@nohwnd I'm not sure what you mean by "dynamic parameter providers"

@nohwnd Ah. All those extra arguments goes after the extra `--`, which ends up in `VSTestCLIRunSettings`. There is no validation that we do for `VSTestCLIRunSettings`. These are guaranteed to be...

> The dotnet test process is being improved in .net 10 isn't it? Yes. It will be opt-in via `dotnet.config`. > Will the -- still be required to separate dotnet...

I tend to think that for your case, you should really be using something else other than `InternalTestFailureException`. It all depends on how your test projects are structured. If you...

`UnitTestAssertException` is currently the base of exception types we have. But: 1. It's abstract 2. The name won't be a good fit here. I think we could make `UnitTestAssertException` inherit...

Could it be reasonable for your scenario to throw `InvalidOperationException` instead? You can still have a useful message there that guides the developer that they are doing something wrong.