Jakub Jareš

Results 1164 comments of Jakub Jareš

It is an option, but I don't like changing what is shown via format xml much, because then you write `where` and you can never filter against what you see...

Will think about it when I am done with the CC stuff for Pester.

What are the cases where you found it useful @evangelink? If I am not mistaken this can be done with a base class, which has the flexibility that point 1....

> creating X intermediate base class that would add this init/cleanup behavior and inherit from the previous base class. Another option here is to compose rather than inherit. So a...

`[STATestClass]` seems like a good enough granularity, given that we don't have the ability to run multiple assembly level setups. It also seems reasonably easy for users to simulate assembly...

I don't think this can be purely testing framework concern. The encoding needs to align with msbuild integration for dotnet test, if we want to transport the standard output data...

I get you maybe are filing this just for yourself, but what is the observed problem?

I was researching this, and we can improve the speed by 10% or more by doing this, (this cuts the time time in reflection to half) by grabbing the collection...

I did some measurements and benchmarks and this is my plan: - [ ] unify usage of reflection Split the usage of reflection into 2 categories, cached and non-cached. All...