Hi,
I am using Isolator v7.0.9.
I would like to know how to fake a static field that is readonly and initialized inline in a static class. I'd prefer not to have to change the field to a property with only a getter just to be able to test the field - bad practice to change your code for unit tests :D
If there isn't a way to do this because it is initialized inline, can I fake it if I move the initialization into a static ctor? Again, not preferable, but...
Thank you for your time.