Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"unsafeMutableAddressor : Swift.String", referenced from:.."

I got an error:

Undefined symbols for architecture x86_64: "DirectBistro.DBTabBarOrderedIndexesKey.unsafeMutableAddressor : Swift.String", referenced from: DirectBistroUITests.TabBarControllerTests.setUp (DirectBistroUITests.TabBarControllerTests)() -> () in TabBarControllerTests.o ld: symbol(s) not found for architecture x86_64

This is my simple UITest class:

import XCTest
@testable import DirectBistro

class TabBarControllerTests: XCTestCase {

    override func setUp() {
        super.setUp()

        let defaults = NSUserDefaults.standardUserDefaults()
        defaults.setObject([], forKey: DBTabBarOrderedIndexesKey)
        defaults.synchronize()
    }
}

This is how it is defined in DBTabBarController.swift:

let DBTabBarOrderedIndexesKey = "TabBarOrderedIndexesKey"

Info pane:

enter image description here

General pane:

enter image description here

like image 600
Bartłomiej Semańczyk Avatar asked Aug 17 '15 06:08

Bartłomiej Semańczyk


3 Answers

The conslusion is: it is not going to work.

I report it as a bug to Apple, and got a response:

UI tests execute differently from Unit tests - Unit tests run inside your application process so they can access your application code. UI tests execute in a separate process, outside your application, so they can simulate how the user interacts with the application. It’s not expected that you will be able to access your app class from a UI test.

like image 80
Bartłomiej Semańczyk Avatar answered Nov 02 '22 16:11

Bartłomiej Semańczyk


It is possible to access application code from your UI tests. Just add the source file to the UI test target:

enter image description here

You can then access that application code from within your UI test code:

enter image description here

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.

like image 34
Eric Avatar answered Nov 02 '22 14:11

Eric


I had the same problem when I added my swift package and tried to use a string variable inside it. The fix is just to add the swift package in the frameworks, libraries section in the target General sectionenter image description here

like image 2
Khaled Annajar Avatar answered Nov 02 '22 14:11

Khaled Annajar