I'm trying to access a private class variable in my unit test:
Class
- private variable abc;
unit test
category/extension above the unittest m file content
@property (...) variable abc;
but within the test, I always get a unrecognized selector error... Is there any trick making private variables visible/testable?
Sorry, found nothing using google ;)
Greetings, matthias