I am trying to run XCTests in Xcode 7 for a model class that uses ESTBeaconManager
and ESTBeaconManagerDelegate
. It’s a Swift project. I followed your guide to import the EstimoteSDK and add the bridging header.
Running the project on the simulator as well as on the device works just fine. Only when running the tests for this class I get a couple of errors that hinder me running the tests:
Use of undeclared type ‘ESTBeaconManagerDelegate’…
Use of undeclared type ‘ESTBeaconManager’…
I wondered, is this a general issue with testing model classes that use the EstimoteSDK/ESTBeaconManager (or is it just me…)?