I have a class of type sealed
that contains some internal private classes with public methods within them.
My task is to test the public methods that are within those private classes, but I know in advance that the methods (including the void
), properties
and fields
of type private
can not be tested . In theory, there should be public methods that make use of these private elements, but there are none (that is, I can practically not have access to what I want anywhere).
Here I leave the class I want to try. The lines I need to try are from 421 onwards. The only thing I do have access to are the public methods of the sealed class.
Thank you very much in advance. Greetings!