So I have an iOS project with tests and everything was working properly.
I felt the need to change the project name. I did as indicated at apple's docs, selected the project and changed its name.
After a while of updating things for this to finally work, the app runs ok, but I'm still having a problem.
I can't run the tests because of this annoying issue. I'm sure it's a basic thing, but still I can't quite figure it out.
Here's my test class (for the sake of the question I'm using a Foo
example)
@testable import MyApp // File FooTests is part of module MyApp. Ignoring import.
class FooTests: QuickSpec {
override func spec() {
describe("a foo test") {
it("tests foo") {
let return = Foo.barMethod()
XCTAssertEqual(return, "expected", "Expected something, got (return) instead")
}
}
}
The Foo
class is not being recognized, and I get the error that the test class is part of MyApp
which is not the case.
Where should I look for?
question from:https://stackoverflow.com/questions/34889552/xcode-test-class-file-is-part-of-module-ignoring-import