I got an error:
Undefined symbols for architecture x86_64: \"DirectBistro.DBTabBarOrderedIndexesKey.unsafeMutableAddressor : Swift.String\", ref
It is possible to access application code from your UI tests. Just add the source file to the UI test target:
You can then access that application code from within your UI test code:
But bear in mind that the application code you're accessing thus from your UI Test is code running in your UI Test target (MyAppUITests), it does not correspond to the code running in the actual app target (MyApp). So do not use it to inspect or modify application state.