Xcode 4 unit testing linker error

后端 未结 9 855
小鲜肉
小鲜肉 2021-02-05 09:19

NOTE: \"Use GHUnit\" is not an acceptable answer to this question. I know most think GHUnit is better than the Xcode4 OCUnit, but that\'s not what I\'m asking about. I\'ll evalu

9条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-05 09:56

    I had this same problem once. For some reason one of the source files for my project was also included to be compiled for the test target, which causes this link error.

    By making sure that only the test-implementation files are compiled, you should be able to resolve this error. You can check this at:

    TestTarget -> Build Phases -> Compile Sources

提交回复
热议问题