I have the following example code as a class variable.
protected static readonly string _url = "SomeURL";
I want to access that _url variable through either stub type or moled type. As I test, public static class variables can be accessed through the stub type. But not the private or protected static class variables. So any idea regarding accessing the private or protected class variables from moles ? It will be very helpful.
Thank you !