How do you usually test `internal`/`protected` met...
# announcements
d
How do you usually test `internal`/`protected` methods and properties? They’re not visible in test scope. My current workaround is extend needed class and add new public property that exposes protected one like
val publicProp = protectedProp
but it looks a bit tricky.